
  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #A07830;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --dark-2: #242424;
    --charcoal: #2E2E2E;
    --warm-white: #FAF8F4;
    --off-white: #F2EDE6;
    --text-muted: #8A8A8A;
    --border: rgba(201,168,76,0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--warm-white);
    color: var(--black);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
  }

  /* ===== STICKY HEADER ===== */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: white;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  .site-header.scrolled {
    padding: 10px 0;
    background: white;
  }
 .site-header img{
    width: 120px;
 }
  .header-logo span { color: var(--gold); }
  .logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff;
  }
  .header-nav a {
    color: blue;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 14px;
    transition: color 0.2s;
  }
  .header-nav a:hover { color: var(--gold); }
  .btn-header-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  }
  .btn-header-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.45);
    color: #fff !important;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('./img/kitchenbanner.webp') center/cover no-repeat;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.65) 55%, rgba(13,13,13,0.35) 100%);
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
  }
  .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(201,168,76,0.4);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.55);
    color: #fff;
  }
  .btn-outline-gold {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline-gold:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
  }
  .hero-contact {
    display: flex; gap: 20px; flex-wrap: wrap;
  }
  .hero-contact a {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .hero-contact a:hover { color: var(--gold); }
  .hero-contact .icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
  }
  .icon-phone { background: rgba(255,255,255,0.12); }
  .icon-wa { background: #25D366; }
  .hero-trust {
    position: absolute;
    bottom: 40px; left: 0; right: 0;
    z-index: 2;
  }
  .trust-card-hero {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 14px 20px;
    text-align: center;
  }
  .trust-card-hero .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .trust-card-hero .lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ===== SECTION SHARED ===== */
  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-tag::before, .section-tag::after {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-title em { color: var(--gold); font-style: normal; }
  .section-sub {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 48px;
  }
  .gold-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 18px 0 24px;
  }
  .gold-line.center { margin-left: auto; margin-right: auto; }
  section { padding: 90px 0; }

  /* ===== ABOUT ===== */
  .about-section { background: var(--off-white); }
  .about-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }
  .about-img-wrap img {
    width: 100%; height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
  }
  .about-img-badge {
    position: absolute;
    bottom: 30px; left: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .about-img-badge .big { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
  .about-img-badge .sm { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
  .feature-check {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
  }
  .check-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.65rem;
    margin-top: 2px;
  }
  .feature-check p { font-size: 0.92rem; color: #444; margin: 0; line-height: 1.5; }
  .feature-check strong { color: var(--black); font-weight: 600; display: block; }

  /* ===== SERVICES ===== */
  .services-section { background: var(--black); }
  .services-section .section-title { color: #fff; }
  .services-section .section-sub { color: rgba(255,255,255,0.5); }
  .service-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 6px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: pointer;
    height: 100%;
  }
  .service-card:hover {
    background: var(--charcoal);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(201,168,76,0.15);
  }
  .service-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 22px;
    transition: all 0.35s;
  }
  .service-card:hover .service-icon {
    background: #1A237E;
    color: #fff;
    border-color: var(--gold);
  }
  .service-card h4 {
    color: #fff; font-size: 1.25rem; margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
  }
  .service-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
  .btn-service-quote {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-service-quote:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-color: var(--gold);
  }

  /* ===== GALLERY ===== */
  .gallery-section { background: var(--warm-white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
 
  .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .gallery-item:first-child img { height: 280px; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 20px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span {
    color: #fff; font-size: 0.85rem; font-weight: 500;
  }
  .gallery-tag {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ===== PROCESS ===== */
  .process-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
  }
  .process-section::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .process-section .section-title { color: #fff; }
  .process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
  }
  .step-num {
    width: 72px; height: 72px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    transition: all 0.3s;
  }
  .process-step:hover .step-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
  }
  .step-connector {
    position: absolute;
    top: 36px; right: -50%;
    width: 100%; height: 1px;
    background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px);
  }
  .process-step:last-child .step-connector { display: none; }
  .process-step h4 {
    color: #fff; font-size: 1.15rem; margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
  }
  .process-step p { color: rgba(255,255,255,0.5); font-size: 0.83rem; line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { background: var(--off-white); }
  .testi-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 8px;
    padding: 36px 30px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .testi-quote {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 16px; left: 24px;
  }
  .testi-stars { color: #F59E0B; font-size: 25px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
  }
  .testi-author {
    display: flex; align-items: center; gap: 14px;
  }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    flex-shrink: 0;
  }
  .testi-author strong { display: block; font-size: 0.9rem; color: var(--black); font-weight: 600; }
  .testi-author span { font-size: 0.78rem; color: var(--text-muted); }

  /* ===== OFFER ===== */
  .offer-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
  }
  .offer-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .offer-section .section-title { color: #fff; }
  .offer-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,0.15);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
  }
  .offer-list li {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 0;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .offer-list li i { font-size: 1rem; }
  .btn-white {
    background: #fff;
    color: var(--gold-dark);
    border: none;
    padding: 15px 34px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  .btn-white:hover {
    background: var(--black);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  }

  /* ===== LEAD FORM ===== */
  .form-section { background: var(--black); }
  .form-section .section-title { color: #fff; }
  .form-section .section-sub { color: rgba(255,255,255,0.5); }
  .lead-form-box {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 44px 40px;
  }
  .form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-control, .form-select {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(201,168,76,0.2) !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 13px 16px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.88rem !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
  }
  .form-control:focus, .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
    background: rgba(255,255,255,0.08) !important;
    outline: none !important;
  }
  .form-control::placeholder { color: rgba(255,255,255,0.3) !important; }
  .form-select option { background: var(--dark-2); color: #fff; }
  .form-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .form-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 28px; }
  .form-promise {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 14px;
  }

  /* ===== FAQ ===== */
  .faq-section { background: var(--warm-white); }
  .accordion-item {
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 6px !important;
    margin-bottom: 10px !important;
    overflow: hidden;
    background: #fff !important;
  }
  .accordion-button {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    background: #fff !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
  }
  .accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background: #fff !important;
  }
  .accordion-button::after {
    filter: invert(0) !important;
  }
  .accordion-body {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
    padding: 0 22px 20px !important;
    background: #fff !important;
  }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .final-cta-bg {
    position: absolute; inset: 0;
    background: url('./img/kitchend.jpg') center/cover no-repeat;
    opacity: 0.08;
  }
  .final-cta .section-title { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); }
  .final-cta-sub { color: rgba(255,255,255,0.6); font-size: 1.05rem; font-weight: 300; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
  .btn-cta-dark {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-cta-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black);
    padding: 50px 0 28px;
    border-top: 1px solid var(--border);
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
  }
  .footer-logo span { color: var(--gold); }
  .footer-desc { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.7; max-width: 260px; }
  .footer-h { color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
  .footer-links { list-style: none; padding: 0; }
  .footer-links li { margin-bottom: 8px; }
  .footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
  .footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
  .footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.5; }
  .footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; }
  .footer-contact-item a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; margin-top: 40px; }
  .footer-bottom p { color: rgba(255,255,255,0.25); font-size: 14px; }

  /* ===== FLOATING BUTTONS ===== */
  .floating-wa {
    position: fixed;
    bottom: 90px; right: 24px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: all 0.3s;
    animation: pulse-green 2s infinite;
  }
  .floating-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.1);
  }
  .floating-call {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #1A237E;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(201,168,76,0.5);
    transition: all 0.3s;
  }
  .floating-call:hover { transform: scale(1.1); color: #fff; }

  /* ===== STICKY MOBILE BAR ===== */
  .sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 10px 12px;
    gap: 8px;
  }
  .sticky-mobile-bar a {
    flex: 1;
    padding: 11px 6px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: all 0.2s;
  }
  .smb-call { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
  .smb-wa { background: #25D366; color: #fff; }
  .smb-quote { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }

  @keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
  }

  /* ===== ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .fade-up-delay-4 { transition-delay: 0.4s; }

  /* ===== INLINE FORM (second) ===== */
  .inline-form-section { background: var(--off-white); }
  .inline-form-card {
    background: linear-gradient(135deg, var(--black), var(--dark));
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 50px 50px;
    position: relative;
    overflow: hidden;
  }
  .inline-form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    .header-nav { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    .about-img-badge { left: 10px; }
    .trust-item { padding: 10px 16px; }
  }
  @media (max-width: 767px) {
    section { padding: 60px 0; }
    .hero { min-height: 100svh; }
    .hero-trust { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; }
    .lead-form-box { padding: 28px 22px; }
    .inline-form-card { padding: 32px 22px; }
    .step-connector { display: none; }
    .sticky-mobile-bar { display: flex; }
    body { padding-bottom: 70px; }
    .floating-wa { bottom: 148px; }
    .floating-call { bottom: 82px;  }
  }
  @media (max-width: 575px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn-gold, .hero-cta-group .btn-outline-gold { width: 100%; justify-content: center; }
  }

  /* ===== NOTIFICATION TOAST ===== */
  .toast-notification {
    position: fixed;
    top: 100px; right: 24px;
    z-index: 2000;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 320px;
  }
  .toast-notification.show { transform: translateX(0); }
