    :root {
      --primary: #C8953A;
      --primary-dark: #A87A28;
      --primary-light: #F5E4C3;
      --dark: #1A1A1A;
      --text: #2D2D2D;
      --muted: #6B6B6B;
      --bg: #FAFAF8;
      --white: #FFFFFF;
      --border: #E8E3D9;
      --section-alt: #F4F1EB;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

    /* TOPBAR */
    .topbar { background: var(--dark); padding: 8px 0; font-size: 13px; color: rgba(255,255,255,0.8); }
    .topbar a { color: var(--primary); text-decoration: none; }
    .topbar a:hover { color: #fff; }
    .topbar .sep { margin: 0 12px; opacity: 0.3; }

    /* NAVBAR */
    .navbar-main { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
    .navbar-brand-wrap { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
    .brand-logo { width: 50px; height: 50px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 22px; color: #fff; letter-spacing: -1px; }
    .brand-text .name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; color: var(--dark); line-height: 1; }
    .brand-text .tagline { font-size: 11px; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
    .nav-menu { display: flex; align-items: center; list-style: none; gap: 4px; margin: 0; padding: 0; }
    .nav-menu li a { font-size: 14px; font-weight: 500; color: var(--text); padding: 8px 14px; border-radius: 6px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
    .nav-menu li a:hover { color: var(--primary); background: var(--primary-light); }
    .nav-cta { background: var(--primary) !important; color: #fff !important; padding: 10px 22px !important; border-radius: 30px !important; }
    .nav-cta:hover { background: var(--primary-dark) !important; }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--dark); font-size: 26px; }

    /* SLIDE PANEL */
    .slide-panel-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .slide-panel-overlay.active { opacity: 1; visibility: visible; }
    .slide-panel { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: var(--white); z-index: 9999; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; display: flex; flex-direction: column; }
    .slide-panel.open { right: 0; }
    .slide-panel-header { background: var(--dark); padding: 20px; display: flex; justify-content: space-between; align-items: center; }
    .slide-panel-header .brand { color: #fff; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
    .slide-panel-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
    .slide-panel-nav { flex: 1; padding: 20px 0; }
    .slide-panel-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 24px; color: var(--text); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--border); transition: all 0.2s; }
    .slide-panel-nav a:hover { color: var(--primary); background: var(--primary-light); }
    .slide-panel-nav a i { color: var(--primary); width: 20px; }
    .slide-panel-footer { padding: 20px; background: var(--section-alt); }
    .slide-panel-footer .contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--text); }
    .slide-panel-footer .contact-item i { color: var(--primary); }

    /* HERO */
    .hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
    .hero-slides { position: relative; height: 100%; }
    .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; }
    .hero-slide.active { opacity: 1; }
    .hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.35) 60%, transparent 100%); }
    .hero-content { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; }
    .hero-badge { display: inline-block; background: var(--primary); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 20px; }
    .hero-title { font-size: clamp(36px,5vw,68px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
    .hero-title span { color: var(--primary); }
    .hero-desc { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-gold { background: var(--primary); color: #fff; border: none; padding: 14px 32px; border-radius: 30px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-gold:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); padding: 13px 30px; border-radius: 30px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }
    .hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
    .hero-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

    /* STATS */
    .stats-strip { background: var(--dark); padding: 30px 0; }
    .stat-item { text-align: center; padding: 10px 20px; }
    .stat-number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; }
    .stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
    .stat-divider { border-right: 1px solid rgba(255,255,255,0.1); }

    /* SECTION COMMON */
    .section-label { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
    .section-title { font-size: clamp(28px,3.5vw,42px); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
    .section-title span { color: var(--primary); }
    .section-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }
    .title-line { width: 50px; height: 3px; background: var(--primary); border-radius: 2px; margin-bottom: 20px; }

    /* ABOUT */
    .about-section { padding: 90px 0; }
    .about-video-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
    .about-video-wrap video { width: 100%; height: 440px; object-fit: cover; display: block; }
    .about-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.35) 0%, transparent 60%); }
    .about-exp-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary); color: #fff; padding: 18px 22px; border-radius: 12px; text-align: center; box-shadow: 0 8px 30px rgba(200,149,58,0.4); }
    .about-exp-badge .num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; line-height: 1; }
    .about-exp-badge .txt { font-size: 12px; font-weight: 600; }
    .about-features { list-style: none; padding: 0; margin-top: 28px; }
    .about-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--text); }
    .about-features li i { color: var(--primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

    /* SERVICES */
    .services-section { padding: 90px 0; background: var(--section-alt); }
    .service-category-title {
      font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      color: var(--white); background: var(--primary); display: inline-block;
      padding: 6px 18px; border-radius: 20px; margin-bottom: 24px;
    }
    .service-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: all 0.3s; height: 100%; border: 1px solid var(--border); }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--primary-light); }
    .service-card-img { width: 100%; height: 250px; object-fit: cover; }
    .service-card-body { padding: 20px; }
    .service-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 20px; color: var(--primary); }
    .service-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
    .service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }
    .service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; text-decoration: none; margin-top: 12px; }
    .service-link:hover { gap: 10px; color: var(--primary-dark); }

    /* WHY CHOOSE US */
    .why-section { padding: 90px 0; }
    .why-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 480px; }
    .why-img-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
    .why-img-grid img:first-child { grid-row: 1 / 3; }
    .why-feature { display: flex; gap: 18px; margin-bottom: 28px; }
    .why-icon { width: 52px; height: 52px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
    .why-feature h5 { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
    .why-feature p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

    /* MISSION VISION */
    .mv-section { padding: 90px 0; background: var(--dark); }
    .mv-section .section-title { color: #fff; }
    .mv-section .section-label { color: var(--primary); }
    .mv-section .title-line { background: var(--primary); }
    .mv-card { border-radius: 20px; padding: 36px 30px; height: 100%; position: relative; overflow: hidden; }
    .mv-card-mission { background: linear-gradient(135deg, var(--primary) 0%, #a87a28 100%); }
    .mv-card-vision { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
    .mv-card-values { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
    .mv-icon { width: 58px; height: 58px; background: rgba(255,255,255,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin-bottom: 20px; }
    .mv-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .mv-card p { font-size: 14.5px; color: rgba(255,255,255,0.8); line-height: 1.75; margin: 0; }
    .mv-values-list { list-style: none; padding: 0; margin: 12px 0 0; }
    .mv-values-list li { font-size: 14px; color: rgba(255,255,255,0.8); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 10px; align-items: center; }
    .mv-values-list li i { color: var(--primary); }
    .mv-values-list li:last-child { border-bottom: none; }

    /* PROCESS */
    .process-section { padding: 90px 0; background: var(--section-alt); }
    .process-step { text-align: center; padding: 30px 20px; position: relative; }
    .process-step::after { content: ''; position: absolute; top: 40px; right: -50%; width: 100%; height: 2px; background: var(--border); }
    .process-step:last-child::after { display: none; }
    .process-num { width: 70px; height: 70px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; position: relative; z-index: 1; }
    .process-step h5 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* GALLERY */
    .gallery-section { padding: 90px 0; }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr);  gap: 12px; }
    .gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
    .gallery-item:first-child { grid-column: 1/3; grid-row: 1/3; }
    .gallery-item:nth-child(5) { grid-column: 3/5; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.55); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label { color: #fff; font-size: 13px; font-weight: 600; background: rgba(200,149,58,0.85); padding: 5px 12px; border-radius: 20px; }

    /* TESTIMONIALS — Google Review Ticker */
    .testimonials-section { padding: 90px 0; background: var(--dark); overflow: hidden; }
    .testimonials-section .section-title { color: #fff; }
    .testimonials-section .section-label { color: var(--primary); }
    .testimonials-section .title-line { background: var(--primary); }
    .google-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
    .google-badge .g-logo { width: 36px; height: 36px; }
    .google-badge .g-text { font-size: 13px; color: rgba(255,255,255,0.6); }
    .google-badge .g-rating { font-size: 22px; font-weight: 700; color: #fff; }
    .google-badge .g-stars { color: #FBBC04; font-size: 16px; }

    .reviews-track-wrap { overflow: hidden; position: relative; }
    .reviews-track-wrap::before,
    .reviews-track-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
    .reviews-track-wrap::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

    .reviews-track { display: flex; gap: 20px; width: max-content; animation: scrollReviews 38s linear infinite; }
    .reviews-track:hover { animation-play-state: paused; }
    @keyframes scrollReviews {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .review-card { flex: 0 0 320px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; transition: border-color 0.3s; }
    .review-card:hover { border-color: var(--primary); }
    .review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
    .review-name { font-weight: 600; color: #fff; font-size: 15px; line-height: 1.2; }
    .review-date { font-size: 12px; color: rgba(255,255,255,0.4); }
    .review-stars { color: #FBBC04; font-size: 14px; margin-bottom: 10px; }
    .review-text { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; }
    .review-g-icon { margin-left: auto; color: rgba(255,255,255,0.25); font-size: 20px; }

    /* CONTACT */
    .contact-section { padding: 90px 0; }
    .contact-info-card { background: var(--dark); border-radius: 20px; padding: 40px; color: #fff; height: 100%; }
    .contact-info-card h3 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .contact-info-card .sub { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 32px; }
    .cinfo-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
    .cinfo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; flex-shrink: 0; }
    .cinfo-item .label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
    .cinfo-item .val { font-size: 15px; color: #fff; font-weight: 500; margin-top: 2px; }
    .cinfo-item .val a { color: var(--primary); text-decoration: none; }
    .cinfo-item .val a:hover { color: #fff; }
    .inquiry-card { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
    .inquiry-card h3 { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .inquiry-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
    .form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.5px; }
    .form-control, .form-select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--text); background: var(--bg); transition: all 0.2s; }
    .form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,149,58,0.15); background: #fff; }
    textarea.form-control { resize: vertical; min-height: 110px; }
    .btn-submit { background: var(--primary); color: #fff; border: none; width: 100%; padding: 14px; border-radius: 10px; font-size: 16px; font-weight: 600; transition: all 0.25s; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .form-success { display: none; background: #d4edda; border: 1px solid #c3e6cb; color: #155724; padding: 16px; border-radius: 10px; margin-top: 16px; font-size: 15px; font-weight: 500; }

    /* FOOTER */
    footer { background: #111; padding: 60px 0 0; color: rgba(255,255,255,0.7); }
    .footer-logo .name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; }
    .footer-logo .tag { font-size: 12px; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; }
    .footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 280px; }
    .footer-title { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 18px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--primary); }
    .footer-contact p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; display: flex; gap: 10px; }
    .footer-contact p i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
    .footer-social { display: flex; gap: 10px; margin-top: 20px; }
    .footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 16px; text-decoration: none; transition: all 0.2s; }
    .footer-social a:hover { background: var(--primary); color: #fff; }
    .footer-bottom { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.4); }

    /* WHATSAPP FLOAT */
    .whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 9000; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.45); animation: waPulse 2.5s infinite; transition: transform 0.2s; }
    .whatsapp-float:hover { transform: scale(1.1); color: #fff; }
    @keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); } 50% { box-shadow: 0 6px 34px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); } }

    /* BACK TO TOP */
    #backToTop { position: fixed; bottom: 30px; left: 30px; z-index: 9000; width: 44px; height: 44px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 18px; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
    #backToTop.show { opacity: 1; transform: translateY(0); }
    #backToTop:hover { background: var(--primary-dark); }

    /* ANIMATIONS */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* MAP */
    .map-section { padding: 0; }
    .map-section iframe { display: block; }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .nav-menu { display: none; }
      .hamburger { display: flex; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,180px); }
      .gallery-item:first-child { grid-column: 1; grid-row: 1; }
      .gallery-item:nth-child(5) { grid-column: 1/3; }
      .why-img-grid { height: 360px; }
    }
    @media (max-width: 767px) {
      .hero-title { font-size: 32px; }
      .about-video-wrap video { height: 260px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4,150px); }
      .gallery-item:first-child { grid-column: 1/3; }
      .gallery-item:nth-child(5) { grid-column: 1/3; }
      .contact-info-card { padding: 28px; margin-bottom: 24px; }
      .inquiry-card { padding: 28px; }
      .process-step::after { display: none; }
      .stat-divider { border-right: none; }
      .why-img-grid { grid-template-columns: 1fr; grid-template-rows: 200px 200px; height: auto; }
      .why-img-grid img:first-child { grid-row: 1; }
      .mv-card { margin-bottom: 16px; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .btn-gold, .btn-outline-white { justify-content: center; }
    }
    
    
    .footer-logo img {
    border-radius: 5px;
}