/* ============================================================
       CSS CUSTOM PROPERTIES
    ============================================================ */
    :root {
      --brown: #8B5A2B;
      --brown-light: #A67B5B;
      --brown-dark: #5C3A21;
      --white: #ffffff;
      --off-white: #fafafa;
      --bg-1: #ffffff;
      --bg-2: #fafafa;
      --bg-3: #f5f5f5;
      --bg-card: #ffffff;
      --text-light: #0f172a;
      --text-muted: #555555;
      --border: rgba(139, 90, 43, 0.25);
      --glass-bg: rgba(255, 255, 255, 0.8);
      --glass-border: rgba(139, 90, 43, 0.2);
      --ff-display: 'Outfit', sans-serif;
      --ff-body: 'Inter', sans-serif;
      --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow-brown: 0 8px 40px rgba(139, 90, 43, 0.18);
      --radius: 16px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    html {
      scroll-behavior: smooth;
      font-size: 17.5px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--bg-1);
      color: var(--text-light);
      cursor: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    section {
      position: relative;
      overflow: hidden;
    }

    /* ============================================================
       CUSTOM CURSOR
    ============================================================ */
    #cursor {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 99999;
      pointer-events: none;
    }

    #cursor-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brown);
      position: fixed;
      transform: translate(-50%, -50%);
      transition: transform 0.1s;
    }

    #cursor-ring {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--brown-light);
      position: fixed;
      transform: translate(-50%, -50%);
      transition: all 0.15s ease;
      opacity: 0.6;
    }

    body:hover #cursor-dot,
    body:hover #cursor-ring {
      opacity: 1;
    }

    /* ============================================================
       SCROLL PROGRESS
    ============================================================ */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      z-index: 9999;
      background: linear-gradient(90deg, var(--brown-dark), var(--brown), var(--brown-light));
      width: 0%;
      transition: width 0.1s linear;
    }



    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    .section-label {
      font-family: var(--ff-body);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--brown);
      display: block;
      margin-bottom: 12px;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--ff-display);
      font-weight: 400;
      line-height: 1.15;
    }

    .section-title {
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: var(--text-light);
      margin-bottom: 16px;
    }

    .section-title span {
      color: var(--brown);
      font-style: italic;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.8;
    }

    /* ============================================================
       GOLD DIVIDER
    ============================================================ */
    .brown-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 16px 0 32px;
    }

    .brown-divider span {
      height: 1px;
      flex: 1;
      background: var(--border);
    }

    .brown-divider i {
      color: var(--brown);
      font-size: 0.6rem;
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn-brown {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      background: linear-gradient(135deg, var(--brown-dark), var(--brown), var(--brown-light));
      color: var(--bg-1);
      font-family: var(--ff-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-brown);
    }

    .btn-brown::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.15);
      transform: translateX(-110%) skewX(-20deg);
      transition: transform 0.5s ease;
    }

    .btn-brown:hover::after {
      transform: translateX(110%) skewX(-20deg);
    }

    .btn-brown:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(139, 90, 43, 0.35);
      color: var(--bg-1);
    }

    .btn-outline-brown {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 34px;
      background: transparent;
      color: var(--white);
      font-family: var(--ff-body);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1px solid var(--white);
      border-radius: 4px;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-outline-brown:hover {
      background: rgba(139, 90, 43, 0.1);
      transform: translateY(-2px);
      color: var(--brown-light);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9000;
      padding: 22px 0;
      transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }

    #navbar.scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
      border-bottom: 1px solid var(--border);
    }

    .navbar-brand-text {
      font-family: var(--ff-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.05em;
    }

    .navbar-brand-text span {
      color: var(--white);
      font-weight: 300;
    }

    #navbar.scrolled .navbar-brand-text {
      color: var(--brown-light);
    }

    #navbar.scrolled .navbar-brand-text span {
      color: var(--text-light);
    }

    .nav-link-custom {
      font-family: var(--ff-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white) !important;
      padding: 8px 16px !important;
      position: relative;
      transition: color 0.3s;
    }

    #navbar.scrolled .nav-link-custom {
      color: var(--text-light) !important;
    }

    .nav-link-custom::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 16px;
      width: 0;
      height: 1px;
      background: var(--brown);
      transition: width 0.3s ease;
    }

    .nav-link-custom:hover {
      color: var(--brown-light) !important;
    }

    .nav-link-custom:hover::after {
      width: calc(100% - 32px);
    }

    .navbar-toggler {
      border: 1px solid var(--border);
      border-radius: 4px;
    }

    .navbar-toggler-icon {
      filter: invert(0) sepia(1) saturate(2) hue-rotate(5deg);
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
      box-sizing: border-box;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: #000;
    }

    .hero-content {
      z-index: 2;
      position: relative;
    }

    .hero-overlay {
      z-index: 1;
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 80%);
      pointer-events: none;
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(2.5rem, 6vw, 5rem);
      color: #ffffff;
      line-height: 1.1;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .hero-title .highlight {
      color: var(--brown-light);
      font-style: italic;
      font-weight: 600;
    }

    .hero-subtitle {
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      color: rgba(255, 255, 255, 0.877);
      line-height: 1.8;
      max-width: 520px;
      margin-bottom: 40px;
      font-weight: 250;
      text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.8);
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    #about {
      padding: 120px 0;
      background: var(--bg-2);
    }

    .about-img-wrap {
      position: relative;
      padding: 24px;
    }

    .about-img-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 60%;
      height: 60%;
      border-top: 2px solid var(--brown);
      border-left: 2px solid var(--brown);
    }

    .about-img-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60%;
      height: 60%;
      border-bottom: 2px solid var(--brown);
      border-right: 2px solid var(--brown);
    }

    .about-main-img {
      width: 100%;
      border-radius: var(--radius);
      object-fit: cover;
      height: 500px;

    }

    .about-badge-card {
      position: absolute;
      bottom: 40px;
      left: -24px;
      background: linear-gradient(135deg, var(--brown-dark), var(--brown));
      padding: 20px 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-brown);
      z-index: 2;
    }

    .about-badge-card strong {
      font-family: var(--ff-display);
      font-size: 2.4rem;
      color: var(--bg-1);
      display: block;
      line-height: 1;
    }

    .about-badge-card span {
      font-size: 0.75rem;
      color: rgba(15, 23, 42, 0.7);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
    }

    .stat-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 24px;
      backdrop-filter: blur(20px);
      transition: var(--transition);
    }

    .stat-card:hover {
      border-color: var(--brown);
      background: rgba(139, 90, 43, 0.06);
      transform: translateY(-4px);
    }

    .stat-number {
      font-family: var(--ff-display);
      font-size: 2.4rem;
      color: var(--brown);
      line-height: 1;
      font-weight: 600;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 6px;
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services {
      padding: 120px 0;
      background: var(--bg-1);
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      -webkit-mask-image: -webkit-radial-gradient(white, black);
      mask-image: radial-gradient(white, black);
    }

    .service-card:hover {
      border-color: var(--brown);
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), var(--shadow-brown);
    }

    .service-img-wrap {
      position: relative;
      overflow: hidden;
      height: 230px;
    }

    .service-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .service-card:hover .service-img-wrap img {
      transform: scale(1.08);
    }

    .service-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    }

    .service-icon-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(139, 90, 43, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown);
      font-size: 0.95rem;
    }

    .service-body {
      padding: 24px;
    }

    .service-body h4 {
      font-size: 1.35rem;
      color: var(--text-light);
      margin-bottom: 10px;
    }

    .service-body p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .service-features {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }

    .service-features li {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .service-features li i {
      color: var(--brown);
      font-size: 0.6rem;
    }

    .service-link {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brown);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }

    .service-link:hover {
      gap: 14px;
      color: var(--brown-light);
    }

    /* ============================================================
       PORTFOLIO
    ============================================================ */
    #portfolio {
      padding: 120px 0;
      background: var(--bg-2);
    }

    .portfolio-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 48px;
    }

    .filter-btn {
      padding: 9px 24px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 100px;
      color: var(--text-muted);
      font-family: var(--ff-body);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--brown);
      border-color: var(--brown);
      color: var(--bg-1);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      cursor: pointer;
      aspect-ratio: 4/3;
      transition: var(--transition);
      -webkit-mask-image: -webkit-radial-gradient(white, black);
      mask-image: radial-gradient(white, black);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .portfolio-item:hover img {
      transform: scale(1.08);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }

    .portfolio-item:hover .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }

    .portfolio-overlay h5 {
      font-size: 1.2rem;
      color: #ffffff;
      margin: 0 0 6px;
    }

    .portfolio-overlay span {
      font-size: 0.75rem;
      color: var(--brown);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .portfolio-zoom {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(139, 90, 43, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown);
      font-size: 0.9rem;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .portfolio-item:hover .portfolio-zoom {
      opacity: 1;
    }

    /* ============================================================
       PROCESS
    ============================================================ */
    #process {
      padding: 120px 0;
      background: var(--bg-1);
    }

    .process-track {
      display: flex;
      align-items: flex-start;
      gap: 0;
      overflow-x: auto;
      padding-bottom: 16px;
    }

    .process-track::-webkit-scrollbar {
      height: 3px;
    }

    .process-track::-webkit-scrollbar-thumb {
      background: var(--brown);
      border-radius: 3px;
    }

    .process-step {
      flex: 0 0 200px;
      text-align: center;
      position: relative;
      padding: 0 16px;
    }

    .process-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(50% + 32px);
      width: calc(100% - 32px);
      height: 1px;
      background: linear-gradient(90deg, var(--brown), var(--border));
    }

    .process-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--glass-bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--brown);
      transition: var(--transition);
    }

    .process-step:hover .process-num {
      background: var(--brown);
      color: var(--bg-1);
      box-shadow: var(--shadow-brown);
    }

    .process-step h5 {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why {
      padding: 120px 0;
      background: var(--bg-2);
    }

    .why-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
    }

    .why-card:hover {
      border-color: var(--brown);
      background: rgba(139, 90, 43, 0.05);
      transform: translateY(-6px);
      box-shadow: var(--shadow-brown);
    }

    .why-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(139, 90, 43, 0.15), rgba(139, 90, 43, 0.05));
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.4rem;
      color: var(--brown);
      transition: var(--transition);
    }

    .why-card:hover .why-icon {
      background: linear-gradient(135deg, var(--brown-dark), var(--brown));
      color: var(--bg-1);
      border-color: transparent;
    }

    .why-card h5 {
      font-size: 1.15rem;
      color: var(--text-light);
      margin-bottom: 12px;
    }

    .why-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* ============================================================
       BEFORE AFTER
    ============================================================ */
    #before-after {
      padding: 120px 0;
      background: var(--bg-1);
    }

    .before-after-container {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      cursor: col-resize;
      user-select: none;
      max-width: 900px;
      margin: 0 auto;
    }

    .ba-before,
    .ba-after {
      width: 100%;
      display: block;
      object-fit: cover;
      height: 500px;
    }

    .ba-before {
      position: absolute;
      inset: 0;
    }

    .ba-clip {
      position: absolute;
      inset: 0;
      clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
      transition: clip-path 0.05s;
    }

    .ba-clip img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    .ba-divider {
      position: absolute;
      top: 0;
      left: 50%;
      bottom: 0;
      width: 2px;
      background: var(--brown);
      transform: translateX(-50%);
      transition: left 0.05s;
    }

    .ba-handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--brown);
      border: 3px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bg-1);
      font-size: 0.9rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      transition: left 0.05s;
    }

    .ba-label {
      position: absolute;
      top: 20px;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .ba-label-before {
      left: 20px;
      background: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(8px);
      color: var(--text-muted);
      border: 1px solid var(--border);
    }

    .ba-label-after {
      right: 20px;
      background: var(--brown);
      color: var(--bg-1);
    }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials {
      padding: 120px 0;
      background: var(--bg-2);
    }

    .swiper-slide {
      height: auto !important;
    }

    .testimonial-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 36px;
      backdrop-filter: blur(20px);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .testi-stars {
      color: var(--brown);
      font-size: 0.9rem;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .testi-text {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 24px;
      font-family: var(--ff-display);
      flex-grow: 1;
    }

    .testi-quote {
      font-size: 3rem;
      color: rgba(139, 90, 43, 0.15);
      font-family: var(--ff-display);
      line-height: 1;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--border);
      flex-shrink: 0;
    }

    .testi-author h6 {
      font-size: 0.95rem;
      color: var(--text-light);
      margin: 0 0 3px;
      font-family: var(--ff-display);
    }

    .testi-author span {
      font-size: 0.75rem;
      color: var(--brown);
    }

    /* ============================================================
       FAQ
    ============================================================ */
    #faq {
      padding: 120px 0;
      background: var(--bg-1);
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .faq-item.open {
      border-color: var(--brown);
    }

    .faq-question {
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--text-light);
      font-size: 1rem;
      background: var(--glass-bg);
      transition: background 0.3s;
    }

    .faq-item.open .faq-question {
      background: rgba(139, 90, 43, 0.06);
    }

    .faq-icon {
      color: var(--brown);
      transition: transform 0.3s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      background: var(--bg-card);
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 20px 24px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* ============================================================
       CONTACT
    ============================================================ */
    #contact {
      padding: 120px 0;
      background: var(--bg-2);
    }

    .contact-info-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 36px;
      height: 100%;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-item:last-child {
      border-bottom: none;
    }

    .contact-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(139, 90, 43, 0.1);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .contact-item h6 {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 4px;
    }

    .contact-item p {
      font-size: 0.9rem;
      color: var(--text-light);
      margin: 0;
      line-height: 1.6;
    }

    .contact-form {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 36px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label-custom {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 8px;
    }

    .form-control-custom {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text-light);
      font-family: var(--ff-body);
      font-size: 0.9rem;
      transition: border-color 0.3s, box-shadow 0.3s;
      outline: none;
    }

    .form-control-custom::placeholder {
      color: var(--text-muted);
    }

    .form-control-custom:focus {
      border-color: var(--brown);
      box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
    }

    select.form-control-custom option {
      background: var(--bg-3);
      color: var(--text-light);
    }

    textarea.form-control-custom {
      resize: vertical;
      min-height: 120px;
    }

    .form-error {
      font-size: 0.78rem;
      color: #e05252;
      margin-top: 5px;
      display: none;
    }

    .form-error.show {
      display: block;
    }

    /* ============================================================
       STATS BAND
    ============================================================ */
    #stats {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
    }

    .stats-num {
      font-family: var(--ff-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--brown);
      line-height: 1;
    }

    .stats-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-top: 8px;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer {
      background: var(--bg-3);
      border-top: 1px solid var(--border);
      padding: 80px 0 0;
    }

    .footer-brand {
      font-family: var(--ff-display);
      font-size: 1.8rem;
      color: var(--brown-light);
      margin-bottom: 16px;
    }

    .footer-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 280px;
    }

    .footer-heading {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: 20px;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 0.88rem;
      color: var(--text-muted);
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a:hover {
      color: var(--brown-light);
    }

    .footer-links a i {
      font-size: 0.5rem;
      color: var(--brown);
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .social-btn:hover {
      border-color: var(--brown);
      color: var(--brown);
      background: rgba(139, 90, 43, 0.1);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      margin-top: 60px;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-bottom span {
      color: var(--brown);
    }

    /* ============================================================
       FLOATING BUTTONS
    ============================================================ */
    .floating-btns {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 8000;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    .float-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      position: relative;
    }

    .float-btn::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid transparent;
      animation: pulseBorder 2s ease infinite;
    }

    @keyframes pulseBorder {
      0% {
        border-color: rgba(139, 90, 43, 0.5);
        transform: scale(1);
      }

      100% {
        border-color: rgba(139, 90, 43, 0);
        transform: scale(1.5);
      }
    }

    .float-wa {
      background: #25d366;
      color: white;
    }

    .float-call {
      background: var(--brown);
      color: var(--bg-1);
    }

    .float-top {
      background: var(--bg-3);
      color: var(--brown);
      border: 1px solid var(--border);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .float-top.show {
      opacity: 1;
      pointer-events: auto;
    }

    .float-btn:hover {
      transform: scale(1.1);
    }

    .float-tooltip {
      position: absolute;
      right: calc(100% + 10px);
      top: 50%;
      transform: translateY(-50%);
      white-space: nowrap;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid var(--border);
      color: var(--text-light);
      font-size: 0.75rem;
      padding: 5px 12px;
      border-radius: 6px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }

    .float-btn:hover .float-tooltip {
      opacity: 1;
    }

    /* ============================================================
       LIGHTBOX
    ============================================================ */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99990;
      background: rgba(0, 0, 0, 0.95);
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }

    #lightbox.open {
      display: flex;
    }

    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }

    .lightbox-inner img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 8px;
    }

    .lb-close {
      position: absolute;
      top: -44px;
      right: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(139, 90, 43, 0.2);
      border: 1px solid var(--border);
      color: var(--brown);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: var(--transition);
    }

    .lb-close:hover {
      background: var(--brown);
      color: var(--bg-1);
    }

    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(139, 90, 43, 0.15);
      border: 1px solid var(--border);
      color: var(--brown);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: var(--transition);
    }

    .lb-prev {
      left: -56px;
    }

    .lb-next {
      right: -56px;
    }

    .lb-nav:hover {
      background: var(--brown);
      color: var(--bg-1);
    }

    /* ============================================================
       SUCCESS MODAL
    ============================================================ */
    #successModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99995;
      background: rgba(0, 0, 0, 0.8);
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
    }

    #successModal.open {
      display: flex;
    }

    .success-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 48px;
      text-align: center;
      max-width: 440px;
      width: 90%;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brown-dark), var(--brown));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 1.8rem;
      color: var(--bg-1);
    }

    .success-box h4 {
      font-size: 1.6rem;
      color: var(--text-light);
      margin-bottom: 12px;
    }

    .success-box p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */

    /* ---- Tablet (≤991px) ---- */
    @media (max-width: 991px) {
      body {
        cursor: auto;
      }

      #cursor {
        display: none !important;
      }

      #about,
      #services,
      #portfolio,
      #process,
      #why-us,
      #testimonials,
      #contact {
        padding: 80px 0 !important;
      }

      .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 20px;
        border-radius: var(--radius);
        margin-top: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border: 1px solid var(--border);
      }

      .nav-link-custom {
        padding: 12px 8px !important;
        color: var(--text-light) !important;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-info-bar {
        display: none;
      }

      .about-badge-card {
        left: 0;
      }

      .ba-before,
      .ba-after,
      .ba-clip img {
        height: 320px;
      }
    }

    /* ---- Mobile (≤767px) ---- */
    @media (max-width: 767px) {

      /* Hide blobs so they don't push layout */
      .blob {
        display: none !important;
      }

      /* Clip every section tightly */
      section,
      #hero {
        overflow: hidden !important;
      }

      #about,
      #services,
      #portfolio,
      #process,
      #why-us,
      #why,
      #faq,
      #before-after,
      #testimonials,
      #contact,
      #stats {
        padding: 56px 0 !important;
      }

      /* ---- NAVBAR ---- */
      #navbar {
        padding: 10px 0 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
      }

      .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 16px 20px;
        border-radius: var(--radius);
        margin-top: 8px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border: 1px solid var(--border);
      }

      .nav-link-custom {
        padding: 12px 8px !important;
        color: var(--text-light) !important;
      }

      /* ---- HERO: fill full viewport, text at top ---- */
      #hero {
        height: 100vh !important;
        height: 100svh !important;
        min-height: -webkit-fill-available !important;
        padding: 80px 0 20px 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .hero-bg {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
      }

      .hero-bg video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }

      .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%) !important;
      }

      .container.hero-content {
        text-align: center !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        position: relative;
        z-index: 3;
      }

      .col-lg-10 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      .hero-title {
        font-size: clamp(5rem, 11vw, 4rem) !important;
        margin-bottom: 14px !important;
        line-height: 1.5 !important;
      }

      .hero-subtitle {
        max-width: 100% !important;
        font-size: clamp(1rem, 3.8vw, 1.15rem) !important;
        margin-bottom: 32px !important;
        line-height: 1.7 !important;
      }

      .hero-btns {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 14px !important;
      }

      .hero-info-bar {
        display: none !important;
      }

      /* ---- ABOUT ---- */
      .about-main-img {
        height: auto;
        max-height: 280px;
        object-fit: cover;
        width: 100%;
      }

      .about-badge-card {
        position: static;
        margin-top: 16px;
      }

      .about-img-wrap {
        padding: 8px;
      }

      .about-img-wrap::before,
      .about-img-wrap::after {
        display: none;
      }

      /* ---- STATS ---- */
      .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .stat-card {
        text-align: center;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      /* ---- SERVICES ---- */
      .service-img-wrap {
        height: 180px;
      }

      /* ---- PORTFOLIO ---- */
      .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .portfolio-filter {
        gap: 8px;
        margin-bottom: 24px;
      }

      .filter-btn {
        padding: 7px 14px;
        font-size: 0.7rem;
      }

      /* ---- PROCESS ---- */
      .process-step {
        flex: 0 0 140px;
      }

      .process-track {
        padding-bottom: 12px;
      }

      /* ---- BEFORE/AFTER ---- */
      .ba-before,
      .ba-after,
      .ba-clip img {
        height: 220px !important;
      }

      /* ---- TESTIMONIALS ---- */
      .testimonial-card {
        padding: 24px 20px;
      }

      /* ---- CONTACT ---- */
      .contact-info-card,
      .contact-form {
        padding: 24px 20px;
      }

      /* ---- FOOTER ---- */
      #footer {
        padding: 56px 0 0;
      }

      .footer-desc {
        max-width: 100%;
      }

      /* ---- LIGHTBOX arrows ---- */
      .lb-prev {
        left: -28px;
      }

      .lb-next {
        right: -28px;
      }

      /* ---- FLOATING BUTTONS ---- */
      .floating-btns {
        bottom: 16px;
        right: 12px;
        gap: 8px;
      }

      .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1rem;
      }
    }

    /* ---- Small Mobile (≤575px) ---- */
    @media (max-width: 575px) {
      html {
        font-size: 15px;
      }

      .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .stat-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: clamp(2.8rem, 10.5vw, 3.8rem) !important;
      }

      .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem) !important;
      }

      .about-main-img {
        max-height: 240px;
      }

      .process-track {
        overflow-x: auto;
        padding-bottom: 16px;
      }

      .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
      }

      .why-card,
      .service-card {
        padding: 24px 16px;
      }

      .contact-info-card,
      .contact-form {
        padding: 20px 16px;
      }

      .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .btn-brown,
      .btn-outline-brown {
        width: 100%;
        max-width: 260px;
        text-align: center;
        justify-content: center;
      }

      .floating-btns {
        gap: 6px;
      }

      .success-box {
        padding: 32px 20px;
      }
    }

    /* ============================================================
       SECTION BG DECO (desktop only)
    ============================================================ */
    .blob {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(139, 90, 43, 0.08) 0%, transparent 70%);
      pointer-events: none;
      animation: blobFloat 8s ease-in-out infinite alternate;
    }

    @keyframes blobFloat {
      from {
        transform: translate(0, 0) scale(1)
      }

      to {
        transform: translate(40px, 30px) scale(1.1)
      }
    }

    .grain-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    [data-aos] {
      pointer-events: none;
    }

    [data-aos].aos-animate {
      pointer-events: auto;
    }