
  /* Sembunyikan Navbar bawaan Blogger */
  #b-navbar, .navbar, #navbar-iframe, .b-navbar {
    display: none !important;
  }
  /* Sembunyikan logo/brand bawaan header */
  .header-widget img, .Header img {
    display: none !important;
  }



        /* ── Reset & Base ── */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --gold: #D4AF37;
            --gold-light: #F4D03F;
            --gold-dark: #B8941F;
            --black: #0a0a0a;
            --dark: #111111;
            --dark-light: #1a1a1a;
            --gray: #888888;
            --white: #ffffff;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        /* ── Preloader ── */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s;
        }
        .loader {
            width: 50px;
            height: 50px;
            border: 3px solid var(--dark-light);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ── Navigation ── */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.3s;
        }
        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1.2;
        }
        .logo span {
            color: var(--white);
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }
        .nav-links a:hover {
            color: var(--gold);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--gold);
            transition: 0.3s;
        }

        /* ── Hero ── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
            background-image: url('https://i.imgur.com/kSU2YGb.jpeg?w=400&h=800&fit=crop&crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.70);
            z-index: 0;
        }
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 20px 0;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-content h1 span {
            color: var(--gold);
            display: block;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-image {
            display: none;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .stat {
            text-align: center;
            min-width: 80px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* ── Info Box di Bawah Gambar ── */
        .hero-info-box {
            margin-top: 40px;
            padding: 30px 40px;
            background: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 16px;
            display: inline-block;
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s;
        }
        .hero-info-box:hover {
            border-color: var(--gold);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
            transform: translateY(-3px);
        }
        .hero-info-box .info-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 8px 0;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .hero-info-box .info-item i {
            color: var(--gold);
            width: 24px;
            text-align: center;
            font-size: 1.1rem;
        }
        .hero-info-box .info-item strong {
            color: var(--white);
            font-weight: 600;
        }
        .hero-info-box .info-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            margin: 8px 0;
        }
        .hero-info-box .info-title {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 10px;
            text-align: center;
            letter-spacing: 1px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 0.95rem;
        }
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            margin-left: 15px;
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* ── Section Common ── */
        section {
            padding: 80px 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--gold);
            border-radius: 30px;
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .section-title span {
            color: var(--gold);
        }
        .section-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            margin: 0 auto 20px;
        }
        .section-desc {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ── About ── */
        .about {
            background: var(--dark);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-image img {
            width: 100%;
            border-radius: 20px;
            border: 3px solid rgba(212, 175, 55, 0.3);
        }
        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .about-content h3 span {
            color: var(--gold);
        }
        .about-content p {
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 15px;
        }

        /* ── Logo Partners ── */
        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin: 25px 0 30px 0;
            flex-wrap: wrap;
            padding: 20px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .partner-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 15px 30px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            transition: all 0.3s;
        }
        .partner-logo:hover {
            transform: translateY(-5px);
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .partner-logo img {
            max-height: 60px;
            width: auto;
            object-fit: contain;
            filter: brightness(0.9);
            transition: filter 0.3s;
        }
        .partner-logo:hover img {
            filter: brightness(1);
        }
        .partner-logo span {
            font-size: 0.75rem;
            color: var(--gray);
            letter-spacing: 1px;
            font-weight: 300;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }
        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .feature i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* ── Gallery ── */
        .gallery {
            background: var(--black);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            aspect-ratio: 4/3;
            border: 2px solid rgba(212, 175, 55, 0.15);
            transition: border-color 0.3s, transform 0.3s;
        }
        .gallery-item:hover {
            border-color: var(--gold);
            transform: scale(1.02);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        .gallery-overlay h4 {
            color: var(--gold);
            font-size: 1.2rem;
        }
        .gallery-overlay p {
            font-size: 0.85rem;
            color: var(--gray);
        }
        .gallery-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--gold);
            color: var(--black);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* ── Lightbox ── */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.94);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
            backdrop-filter: blur(6px);
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--white);
            font-size: 2.8rem;
            cursor: pointer;
            z-index: 10;
            transition: color 0.3s;
            background: none;
            border: none;
        }
        .lightbox-close:hover {
            color: var(--gold);
        }
        .lightbox-slide {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 12px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            object-fit: contain;
            background: var(--dark);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            transition: opacity 0.4s ease;
            opacity: 0;
        }
        .lightbox-slide.show {
            opacity: 1;
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--white);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(4px);
        }
        .lightbox-nav:hover {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }
        .lightbox-nav.prev {
            left: 20px;
        }
        .lightbox-nav.next {
            right: 20px;
        }
        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gray);
            font-size: 0.95rem;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 20px;
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            z-index: 10;
            font-weight: 500;
        }
        .lightbox-counter span {
            color: var(--gold);
            font-weight: 700;
        }
        .lightbox-dots {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 80%;
        }
        .lightbox-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.2);
            cursor: pointer;
            transition: all 0.3s;
        }
        .lightbox-dots .dot.active {
            background: var(--gold);
            border-color: var(--gold);
            transform: scale(1.2);
        }
        .lightbox-dots .dot:hover {
            background: var(--gold-light);
        }
        .lightbox-title {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            z-index: 10;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 24px;
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            pointer-events: none;
        }
        .lightbox-title span {
            color: var(--gold);
        }

        /* ── Portfolio ── */
        .portfolio {
            background: var(--dark-light);
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .portfolio-card {
            background: var(--dark);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s;
        }
        .portfolio-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
        }
        .portfolio-image {
            position: relative;
            height: 220px;
            overflow: hidden;
            cursor: pointer;
        }
        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .portfolio-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .portfolio-content {
            padding: 25px;
        }
        .portfolio-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .location {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .portfolio-content p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .portfolio-details {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .detail {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            color: var(--gray);
        }
        .detail i {
            color: var(--gold);
        }
        .portfolio-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            flex-wrap: wrap;
            gap: 15px;
        }
        .price {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold);
            font-weight: 700;
        }
        .price span {
            font-size: 0.85rem;
            color: var(--gray);
            font-family: 'Poppins', sans-serif;
        }

        /* ── Car Rental ── */
        .car-rental {
            background: var(--black);
        }
        .car-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .car-card {
            background: var(--dark);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s;
        }
        .car-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }
        .car-image {
            height: 200px;
            overflow: hidden;
            background: var(--dark-light);
        }
        .car-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .car-content {
            padding: 25px;
        }
        .car-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        .car-specs {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .spec {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            color: var(--gray);
        }
        .spec i {
            color: var(--gold);
        }
        .car-content p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .car-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            flex-wrap: wrap;
            gap: 10px;
        }
        .rental-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--gold);
            font-weight: 700;
        }
        .rental-price span {
            font-size: 0.8rem;
            color: var(--gray);
            font-family: 'Poppins', sans-serif;
        }

        /* ── Contact ── */
        .contact {
            background: var(--dark);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        .contact-info {
            padding: 40px;
            background: var(--dark-light);
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .contact-info h3 span {
            color: var(--gold);
        }
        .contact-info>p {
            color: var(--gray);
            margin-bottom: 30px;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s;
        }
        .contact-item:hover {
            border-color: var(--gold);
            transform: translateX(5px);
        }
        .contact-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-icon i {
            color: var(--black);
            font-size: 1.1rem;
        }
        .contact-text h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        .contact-text p,
        .contact-text a {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .contact-text a:hover {
            color: var(--gold);
        }
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: all 0.3s;
        }
        .social-link:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
        }

        .contact-form {
            padding: 40px;
            background: var(--dark-light);
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .contact-form h3 span {
            color: var(--gold);
        }
        .contact-form>p {
            color: var(--gray);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--gold);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--dark);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .btn-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* ── Footer ── */
        footer {
            background: var(--black);
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .logo {
            margin-bottom: 15px;
            display: inline-block;
        }
        .footer-brand p {
            color: var(--gray);
            line-height: 1.8;
        }
        .footer-col h4 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: var(--gray);
            transition: color 0.3s;
        }
        .footer-col ul li a:hover {
            color: var(--gold);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        .footer-bottom span {
            color: var(--gold);
        }

        /* ── WhatsApp Float ── */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
        }
        .wa-float i {
            color: white;
            font-size: 1.8rem;
        }

        /* ── Scroll Reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Portfolio Lightbox (untuk gambar paket wisata) ── */
        .portfolio-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            padding: 20px;
            backdrop-filter: blur(6px);
        }
        .portfolio-lightbox.active {
            display: flex;
        }
        .portfolio-lightbox .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--white);
            font-size: 2.8rem;
            cursor: pointer;
            z-index: 10;
            transition: color 0.3s;
            background: none;
            border: none;
        }
        .portfolio-lightbox .lightbox-close:hover {
            color: var(--gold);
        }
        .portfolio-lightbox img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 12px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            object-fit: contain;
            background: var(--dark);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }
        .portfolio-lightbox .lightbox-title {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            z-index: 10;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 24px;
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            pointer-events: none;
        }
        .portfolio-lightbox .lightbox-title span {
            color: var(--gold);
        }

        /* ── RESPONSIVE TABLET (max-width: 1024px) ── */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            .hero-stats {
                gap: 30px;
            }
            .about-grid {
                gap: 40px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .portfolio-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .car-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            }
            .contact-grid {
                gap: 30px;
            }
            .contact-info,
            .contact-form {
                padding: 30px;
            }
        }

        /* ── RESPONSIVE MOBILE (max-width: 768px) ── */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.3s ease;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: flex;
                z-index: 1001;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero {
                padding: 100px 20px 60px;
                background-attachment: scroll;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-stats {
                gap: 20px;
                margin-top: 30px;
            }
            .stat-number {
                font-size: 1.6rem;
            }
            .stat-label {
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 2rem;
            }
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .features {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            .car-grid {
                grid-template-columns: 1fr 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .btn-outline {
                margin-left: 0;
                margin-top: 10px;
            }
            .hero-btns {
                display: flex;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 16px;
            }
            .portfolio-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            .car-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            .contact-info,
            .contact-form {
                padding: 25px;
            }

            /* Lightbox mobile */
            .lightbox-slide {
                max-width: 98vw;
                max-height: 70vh;
            }
            .lightbox-title {
                font-size: 0.9rem;
                top: 60px;
                padding: 4px 14px;
            }
            .lightbox-close {
                font-size: 2rem;
                top: 12px;
                right: 16px;
            }
            .lightbox-nav {
                width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }
            .lightbox-nav.prev {
                left: 4px;
            }
            .lightbox-nav.next {
                right: 4px;
            }
            .lightbox-dots {
                bottom: 60px;
                gap: 5px;
            }
            .lightbox-dots .dot {
                width: 6px;
                height: 6px;
            }
            .lightbox-counter {
                font-size: 0.7rem;
                padding: 4px 12px;
                bottom: 20px;
            }
            
            /* Logo partners responsive */
            .partners-logos {
                gap: 15px;
                padding: 15px;
            }
            .partner-logo {
                padding: 10px 20px;
            }
            .partner-logo img {
                max-height: 40px;
            }

            /* Portfolio Lightbox mobile */
            .portfolio-lightbox .lightbox-title {
                font-size: 0.9rem;
                top: 60px;
                padding: 4px 14px;
            }
            .portfolio-lightbox .lightbox-close {
                font-size: 2rem;
                top: 12px;
                right: 16px;
            }
            .portfolio-lightbox img {
                max-width: 98vw;
                max-height: 70vh;
            }
        }

        /* ── RESPONSIVE SMALL PHONES (max-width: 480px) ── */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 0.95rem;
            }
            .hero-stats {
                gap: 15px;
                flex-direction: column;
                align-items: center;
            }
            .stat {
                min-width: auto;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .section-badge {
                font-size: 0.75rem;
                padding: 6px 14px;
            }
            .car-grid {
                grid-template-columns: 1fr;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .gallery-item {
                aspect-ratio: 4/3;
            }
            .portfolio-card .portfolio-image {
                height: 180px;
            }
            .portfolio-content h3 {
                font-size: 1.2rem;
            }
            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
            }
            .contact-icon {
                width: 50px;
                height: 50px;
            }
            .contact-icon i {
                font-size: 1.3rem;
            }
            .social-links {
                justify-content: center;
            }
            .logo {
                font-size: 1.3rem;
            }
            .wa-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .wa-float i {
                font-size: 1.5rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.85rem;
            }
            .lightbox-title {
                font-size: 0.8rem;
                top: 50px;
                padding: 4px 10px;
            }
            .lightbox-nav {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
            .lightbox-dots .dot {
                width: 5px;
                height: 5px;
            }
            .hero-info-box {
                padding: 20px 24px;
                max-width: 100%;
                margin-top: 30px;
            }
            .hero-info-box .info-item {
                font-size: 0.85rem;
                padding: 6px 0;
            }
            .hero-info-box .info-title {
                font-size: 0.95rem;
            }

            /* Portfolio Lightbox small phone */
            .portfolio-lightbox .lightbox-title {
                font-size: 0.8rem;
                top: 50px;
                padding: 4px 10px;
            }
            .portfolio-lightbox .lightbox-close {
                font-size: 1.8rem;
                top: 10px;
                right: 14px;
            }
        }
    