/* =========================
   CraftLab Mini Landing v1
   Design Tokens
========================= */

:root {
    --color-bg: #ffffff;
    --color-surface: #f6f6f6;
    --color-text: #111111;
    --color-muted: #666666;
  
    --color-accent: #ff5c58; /* swap per client */
    --color-accent-second: #f5d1b9;
  
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  
    --container: 1100px;
    --pad: 20px;
  
    --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
      Arial, "Apple Color Emoji", "Segoe UI Emoji";
  }
  
  /* Global reset */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
  }

  body.menu-open {
    overflow: hidden;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Utilities */
  .container {
    width: min(var(--container), calc(100% - var(--pad) * 2));
    margin: 0 auto;
  }
  
  .section {
    padding: 96px 0;
    position: relative;
  }
  
  .section--alt {
    background: var(--color-surface);
  }
  
  .section--alt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,0.05);
  }
  
  .kicker {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  
  .h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin: 10px 0 12px;
  }
  
  .p {
    color: var(--color-muted);
    margin: 0;
    max-width: 65ch;
  }
  
  .grid {
    display: grid;
    gap: 16px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
    cursor: pointer;
    user-select: none;
  }
  
  .btn:active {
    transform: translateY(1px);
  }
  
  .btn--primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 10px 18px rgba(255, 92, 88, 0.25);
  }
  
  .btn--primary:hover {
    box-shadow: 0 14px 26px rgba(255, 92, 88, 0.30);
  }
  
  .btn--outline {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.14);
  }
  
  .badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 92, 88, 0.10);
    color: var(--color-accent);
    font-weight: 700;
  }
  
/* =========================
   Header + Navigation
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-accent);
    backdrop-filter: blur(12px);
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
  }
  
  .brand__name {
    font-weight: 900;
    font-size: 18px;
  }

  .brand__logo img {
    height: 56px;
    width: auto;
    display: block;
  }

  /* Right side */
  .nav__right {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  /* Social icons */
  .nav__social {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .nav__social img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .nav__social a:hover img {
    transform: translateY(-2px);
    opacity: 0.8;
  }

  @media (max-width: 819px) {
    .nav__social {
      display: none;
    }
  }
  
  /* Desktop nav */
  .nav__links {
    display: none;
    align-items: center;
    gap: 20px;
  }
  
  .nav__links a {
    font-weight: 600;
    color: var(--color-surface);
    transition: color 0.2s ease;
  }
  
  .nav__links a:hover {
    color: var(--color-text);
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Burger button */
  .burger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }

  .burger.active {
    position: absolute;
    top: 22px;
    right: 50px;
  }


.burger {
    width: 32px;
    height: 32px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 300;
  }
  
  /* Burger lines */
  .burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-text);
    transition: opacity 0.2s ease;
  }
  
  .burger span:nth-child(1) { top: 6px; }
  .burger span:nth-child(2) { top: 14px; }
  .burger span:nth-child(3) { top: 22px; }
  
  /* Hide lines when active */
  .burger.active span {
    opacity: 0;
  }
  
  /* Create clean X */
  .burger::before,
  .burger::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 3px;
    background: var(--color-text);
    transform: translate(-50%, -50%) rotate(0);
    transition: transform 0.3s ease, opacity 0.2s ease;
    opacity: 0;
  }
  
  .burger.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .burger.active::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  
  /* Mobile dropdown */
  .nav__links.active {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
  
    background: var(--color-accent-second);
  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  
    padding: 40px 20px;
  
    z-index: 999;
  }
  
  /* Desktop breakpoint */
  @media (min-width: 820px) {
    .burger {
      display: none;
    }
  
    .nav__links {
      display: flex;
    }
  }
  
  /* Hero */
  .hero {
    padding: 64px 0 40px;
  }
  
  .hero__wrap {
    display: grid;
    gap: 22px;
    align-items: center;
  }
  
  .hero__title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    margin: 10px 0;
    letter-spacing: -0.6px;
  }
  
  .hero__sub {
    color: var(--color-muted);
    margin: 0;
    max-width: 60ch;
  }
  
  .hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
  }
  
  .hero__card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .hero__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  
  .hero__cardBody {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
  }
  
  .hero__meta {
    color: var(--color-muted);
    font-size: 14px;
  }
  
  /* Cards */
  .cards {
    grid-template-columns: 1fr;
  }
  
  .card {
    background: #fff;
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  }
  
  .card__title {
    margin: 0 0 6px;
    font-weight: 900;
  }
  
  .card__text {
    margin: 0;
    color: var(--color-muted);
  }
  
  /* =========================
   Flip Cards
========================= */

.flip-card {
    perspective: 1200px;
  }
  
  .flip-card__inner {
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
  }

  .flip-card:hover .flip-card__inner {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  
  .flip-card.is-flipped .flip-card__inner {
    transform: rotateY(180deg);
  }
  
  .flip-card__front,
  .flip-card__back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    overflow: hidden;
    backface-visibility: hidden;
    border: 5px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
  }
  
  /* FRONT */
  .flip-card__front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .flip-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.2)
    );
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    gap: 10px;
  }
  
  .flip-card__overlay h3 {
    margin: 0;
    font-size: 20px;
  }
  
  /* BACK */
  .flip-card__back {
    background: var(--color-accent-second);
    padding: 26px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  }
  
  .flip-card__back h3 {
    margin: 0;
    font-weight: 800;
  }
  
  .flip-card__back p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
  }
  
  /* Small button variation */
  .btn--small {
    padding: 8px 14px;
    font-size: 14px;
  }

  /* About bullets */
  .bullets {
    margin-top: 16px;
    display: grid;
    gap: 10px;
  }
  
  .bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--color-muted);
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 6px;
    background: var(--color-accent);
  }
  
  /* Gallery */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery img {
    border-radius: var(--radius);
    height: 160px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  /* Testimonial */
  .quote {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
  }
  
  .quote__text {
    font-size: 18px;
    margin: 0 0 12px;
  }
  
  .quote__meta {
    color: var(--color-muted);
    font-weight: 700;
  }
  
/* =========================
   Contact Section
========================= */

.contact {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  .contact__content {
    display: grid;
    gap: 40px;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form__row--2 {
    display: grid;
    gap: 20px;
  }
  
  .form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form__group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
  }
  
  .input,
  .textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.15);
    font: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--color-accent-second);
  }
  
  .input:focus,
  .textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 92, 88, 0.15);
  }
  
  .form__submit {
    align-self: flex-start;
  }
  
  .contact__side {
    display: flex;
  }
  
  .contact__card {
    background: #eeecec;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* Desktop layout */
  @media (min-width: 820px) {
    .contact__content {
      grid-template-columns: 1.2fr 0.8fr;
    }
  
    .form__row--2 {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Footer */
  .footer {
    padding: 20px 40px ;
    border-top: 3px solid rgba(0, 0, 0, 0.06);
    color: var(--color-surface);
    background: var(--color-accent);
  }
  
  .footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer__left {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.footer__left span {
  color: var(--color-surface);
  font-size: 13px;
}
  
  .footer__left strong {
    color: var(--color-text);
    font-size: 18px;
  }

  .footer__meta {
    font-size: 15px;
    color: var(--color-surface);
  }
  
  .footer__tag {
    font-size: 15px;
    color: var(--color-text);
    font-size: 15px;
    margin-top: 0;
  }
  
  .footer__right {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .footer__right a {
    font-weight: 600;
    transition: opacity 0.2s ease;
  }
  
  .footer__right a:hover {
    opacity: 0.7;
    color: var(--color-text);
  }
  
  /* Responsive */
  @media (min-width: 820px) {
    .nav__links {
      display: flex;
    }
    .hero__wrap {
      grid-template-columns: 1.1fr 0.9fr;
    }
    .cards {
      grid-template-columns: repeat(3, 1fr);
    }
    .gallery {
      grid-template-columns: repeat(3, 1fr);
    }
    .gallery img {
      height: 190px;
    }
  }

  /* =========================
   Floating WhatsApp
========================= */

.floating-wa {
    position: fixed;
    bottom: 56px;
    right: 56px;
    background: #25D366;
    padding: 10px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .floating-wa img {
    width: 56px;
    height: 56px;
  }
  
  .floating-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  }