:root {
    --primary-color: #ff0000;
    --secondary-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 100px;
    /* Account for fixed header height */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    background-color: #fff;
    overflow-x: hidden;
}

/* ============================================
   NAVBAR - GAMBAR 1 EXACT MATCH (100%)
   ============================================ */

/* Header - Fixed at top, white background with blur */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Nav Container - Logo left, Menu center, WhatsApp right */
/* Nav Container - Logo left, Menu center, WhatsApp right */
nav {
    display: flex;
    justify-content: space-between;
    /* Ensures equal spacing between Logo, Links, Button */
    align-items: center;
    padding: 1.2rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* Logo - Proportional size (Gambar 2 reference) */
.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo img {
    height: 50px;
    /* Proportional logo size from Gambar 2 */
    width: auto;
    display: block;
}

/* Nav Links - CENTERED between Logo and Button */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    /* Adjusted gap for spacing */
    margin: 0;
    /* Remove auto margins to allow space-between to center it */
}

/* ... (keep link styles same) ... */
.nav-links li a {
    text-decoration: none;
    color: #555756;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

/* Red underline for active/hover */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* WhatsApp Button - Right side (Desktop) */
.btn-whatsapp-header {
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 1001;
}

/* ... (keep unrelated styles) ... */

/* Clients Section Updates */
.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    padding: 1rem;
}

.clients-grid img {
    height: auto;
    max-height: 55px;
    /* Match Gambar 5 size approx */
    width: auto;
    max-width: 180px;
    filter: grayscale(100%);
    transition: var(--transition);
    flex: 0 1 auto;
    /* Allow shrinking */
}

/* Quote Section - Adjusted for Top-Left Text and Bottom-Right Image */
.profile-card-v2 {
    /* Card Structure: Rectangle with rounded corners, thin red outline, white background */
    flex: 1;
    background: #ffffff;
    padding: 2.8rem 2.8rem 0 2.8rem;
    /* Consistent padding, 0 bottom for photo */
    border-radius: 35px;
    /* Large rounded corners */
    border: 3px solid var(--primary-color);
    /* Thin red outline */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    /* Layout: Flex row */
    display: flex;
    /* Removed align-items: flex-end to allow custom alignment */
    justify-content: space-between;

    /* Container properties */
    position: relative;
    overflow: hidden;
    min-height: 330px;
}

/* Text Content Container - Left Side - ALIGNED TOP */
.profile-content-v2 {
    z-index: 2;
    /* Above wave decoration */
    padding-bottom: 0;
    /* Remove bottom padding */
    flex-shrink: 0;
    /* Prevent text from shrinking */
    text-align: left;
    /* All text aligned left */
    align-self: flex-start;
    /* Push to Top */
    padding-top: 1rem;
    /* Little spacing from top border if needed, or rely on padding */
}

/* ... (Text styles) ... */

/* Photo Container - Right Side - ALIGNED BOTTOM */
.profile-image-v2 {
    /* Photo sizing - ENLARGED to match Gambar 2/4 */
    width: 350px;
    /* Increased size */
    height: auto;
    /* Allow auto height based on aspect */
    max-height: 100%;
    /* Don't overflow top */
    flex-shrink: 0;

    /* Positioning */
    z-index: 3;
    display: flex;
    align-items: flex-end;
    align-self: flex-end;
    /* Push to Bottom */
    position: relative;
    margin-right: -1rem;
    /* Move slightly right to corner */
    margin-bottom: 0;
}

/* Photo Image */
.profile-image-v2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    transform: scale(1.15);
    /* Make it pop */
    transform-origin: bottom right;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 200000;
    /* Ensure above everything */
    position: relative;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Hamburger animation when active - Perfect Center X */
.menu-toggle.active .bar:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
}

/* Hide mobile WhatsApp item on desktop */
.mobile-whatsapp-item {
    display: none;
    /* Hidden on desktop, shown in dropdown on mobile */
}

/* ============================================
   HERO SECTION - GAMBAR 2 EXACT MATCH (100%)
   Billboard: LARGER & POSITIONED BOTTOM RIGHT
   ============================================ */

/* Hero Section Container - Top spacing for fixed navbar */
.hero-section {
    padding: 120px 4rem 80px;
    /* Top padding for navbar + spacing */
    max-width: 1500px;
    margin: 0 auto;
}

/* Red Container - Exact shape & rounded corners from Gambar 2 */
.hero-card-container {
    background-color: var(--primary-color);
    border-radius: 45px;
    /* Large rounded corners exact from Gambar 2 */
    display: flex;
    align-items: stretch;
    min-height: 520px;
    /* Slightly taller for larger billboard */
    overflow: hidden;
    position: relative;
    padding: 0;
    /* Remove internal padding to allow absolute positioning */
}

/* Left Side - Text Content */
.hero-content {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    /* Above billboard */
    padding: 60px 50px 60px 70px;
    /* Padding inside text area */
    position: relative;
}

/* Headline - "Advertising Recommendations." with exact line break */
.hero-content h1 {
    font-size: 4.5rem;
    /* Exact size from Gambar 1 */
    line-height: 1.15;
    font-weight: 700;
    /* Bold weight */
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

/* Subtext - Below headline */
.hero-content p {
    font-size: 1.2rem;
    /* Smaller than headline, exact from Gambar 1 */
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.6;
}

/* "Explore Projects" Button with arrow icon */
.btn-explore-white {
    background: #fff;
    color: var(--primary-color);
    padding: 1rem 2.2rem;
    border-radius: 100px;
    /* Fully rounded */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    width: fit-content;
}

.btn-explore-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-explore-white svg {
    width: 20px;
    height: 20px;
}

/* Right Side - Billboard Image Container */
.hero-image-v2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    /* Larger width for bigger billboard (Gambar 2) */
    height: 85%;
    /* Take 85% of container height */
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: flex-end;
    /* Align to right */
    z-index: 2;
    /* Below text content */
}

/* Billboard Image - LARGER & POSITIONED BOTTOM RIGHT (Gambar 2) */
.hero-image-v2 img {
    width: 100%;
    /* Full width of container */
    height: 100%;
    /* Full height of container */
    object-fit: contain;
    /* Keep entire billboard visible, no cropping */
    object-position: bottom right;
    /* Position at bottom right */
}

/* Features Section */
.features-section {
    padding: 60px 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
            rgba(255, 0, 0, 0.4) 0%,
            rgba(255, 50, 50, 0.25) 30%,
            rgba(255, 100, 100, 0.1) 60%,
            transparent 80%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(20px);
}

.feature-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* We Provide Section */
.provide-section {
    padding: 100px 4rem;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 4rem;
    display: block;
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.provide-card {
    border-radius: 24px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
    color: #fff;
}

.provide-card.red {
    background: var(--primary-color);
}

.provide-card.gray {
    background: #e9eff5;
    color: var(--text-dark);
}

/* Custom Transforms for Provide Images */
.provide-card:nth-child(1) .provide-img {
    transform: scale(1.4) rotate(-5deg) translate(10px, 10px);
}

.provide-card:nth-child(2) .provide-img {
    transform: scale(1.2) translateY(5px);
}

.provide-card:nth-child(3) .provide-img {
    transform: scale(1.3) rotate(5deg) translate(-5px, 5px);
}

.provide-card:nth-child(4) .provide-img {
    transform: scale(1.1) rotate(-2deg);
}

.provide-card:nth-child(5) .provide-img {
    transform: scale(1.35) rotate(3deg) translateY(8px);
}

.provide-card:nth-child(6) .provide-img {
    transform: scale(1.2) rotate(-3deg);
}

.provide-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.provide-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.provide-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Happy Client Section */
.clients-section {
    padding: 80px 4rem;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Auto wrap if crowded */
    gap: 3rem;
    /* Spacing */
    margin-top: 4rem;
}

.clients-grid img {
    height: auto;
    max-height: 80px;
    /* Start large like Gambar 5 */
    width: auto;
    max-width: 180px;
    /* Constraint width */
    filter: grayscale(100%);
    transition: var(--transition);
    /* Flex shrinking logic: Allow shrinking, start with auto basic */
    flex: 0 1 auto;
}

.clients-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Quote Section - Pixel Perfect Match Gambar 2 - LOCKED STRUCTURE */
.quote-section-v2 {
    padding: 100px 4rem 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.quote-container-v2 {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

/* Quote Card (Red Box) - Left Side */
/* Quote Card (Red Box) - Left Side */
.quote-card-red {
    flex: 1.2;
    /* Adjusted from 1.4 to give more space to the profile card */
    background: var(--primary-color);
    color: #fff;
    padding: 4.5rem 4.5rem;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.12);
}

.quote-text-white {
    font-size: 2.55rem;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.3px;
    text-align: center;
}

/* Profile Card (White Box) - Right Side - LOCKED STRUCTURE */
.profile-card-v2 {
    /* Card Structure */
    flex: 1;
    background: #ffffff;
    padding: 2.8rem 2.8rem 0 2.8rem;
    border-radius: 35px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    /* Layout: Flex to position text TOP-LEFT, photo BOTTOM-RIGHT */
    display: flex;
    justify-content: space-between;
    /* Removed align-items to allow distinct self-alignment */

    position: relative;
    overflow: hidden;
    min-height: 330px;
}

/* Text Content Container - Left Side of Card */
.profile-content-v2 {
    z-index: 2;
    padding-bottom: 0;
    /* Remove bottom padding */
    flex-shrink: 0;
    text-align: left;
    align-self: flex-start;
    /* Align Top */
}

/* Text Hierarchy - Top to Bottom */

/* 1. Company Label - Small text at top */
.company-label-v2 {
    display: block;
    color: #8a8a8a;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
    line-height: 1.2;
}

/* 2. Name - Largest and Bold */
.profile-name-v2 {
    font-size: 3.85rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.6rem;
}

/* 3. Title - Small text at bottom */
.profile-title-v2 {
    display: block;
    color: #666;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Photo Container - Right Side - MUCH LARGER */
/* Photo Container - Right Side - MUCH LARGER */
.profile-image-v2 {
    /* Photo sizing */
    width: 280px;
    /* Adjusted to be more natural */
    height: auto;
    flex-shrink: 0;

    /* Positioning */
    z-index: 3;
    display: flex;
    align-items: flex-end;
    /* Image inside aligns bottom */
    align-self: flex-end;
    /* Container aligns bottom of card */
    position: relative;
    margin-right: 0;
    /* Fixed: Removed negative margin */
    margin-bottom: 0;
}

/* Photo Image - Half body portrait - DOMINANT */
.profile-image-v2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    /* Fixed visibility and position */
    display: block;
}

/* Wave Decoration - Background Layer - BEHIND TEXT AND PHOTO */
.profile-line-bg {
    position: absolute;
    bottom: 0;
    /* Horizontal wave in middle area */
    left: 0;
    width: 100%;
    /* Full width */
    height: auto;
    opacity: 1;
    /* Full visibility */
    z-index: 1;
    /* Behind photo (z-3) and text (z-2) */
    pointer-events: none;
    /* No interaction */
}

/* Error message styling */
.error-msg-container {
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.2rem;
}

/* Responsive updates for new sections */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .quote-section-v2 {
        padding: 80px 3rem 60px;
    }

    .quote-text-white {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .profile-name-v2 {
        font-size: 3.3rem;
    }

    .profile-image-v2 {
        width: 250px;
        /* Increased from 210px to account for removed scale */
    }
}

@media (max-width: 1024px) {
    .hero-card-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-image-v2 {
        width: 100%;
        min-height: 300px;
    }

    .hero-image-v2 img {
        width: 90%;
        height: auto;
        transform: none;
        margin: 0 auto;
    }

    .quote-section-v2 {
        padding: 70px 2.5rem 50px;
    }

    .quote-container-v2 {
        flex-direction: column;
        gap: 2rem;
    }

    .quote-card-red {
        padding: 3.5rem 3rem;
    }

    .quote-text-white {
        font-size: 2rem;
        text-align: center;
    }

    .profile-card-v2 {
        min-height: 300px;
        padding: 2.3rem 2.3rem 0 2.3rem;
    }

    .profile-content-v2 {
        padding-bottom: 2.3rem;
    }

    .profile-name-v2 {
        font-size: 3rem;
    }

    .profile-image-v2 {
        width: 260px;
    }

    /* Fixed: Wave stays at bottom */
    .profile-line-bg {
        bottom: 0;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 4rem 2rem;
    }

    .hero-card-container {
        border-radius: 30px;
    }

    .hero-content {
        padding: 4rem 2rem;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .quote-section-v2 {
        padding: 60px 1.5rem 40px;
    }

    .quote-card-red,
    .profile-card-v2 {
        border-radius: 22px;
    }

    .quote-card-red {
        padding: 2.5rem 2rem;
    }

    .quote-text-white {
        font-size: 1.65rem;
        text-align: center;
        line-height: 1.35;
        letter-spacing: -0.2px;
    }

    .profile-card-v2 {
        padding: 2rem 2rem 0 2rem;
        min-height: 280px;
    }

    .profile-content-v2 {
        padding-bottom: 2rem;
    }

    .company-label-v2 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .profile-image-v2 {
        width: 220px;
    }

    .profile-name-v2 {
        font-size: 2.6rem;
        margin-bottom: 0.4rem;
    }

    .profile-title-v2 {
        font-size: 1rem;
    }

    /* Fixed: Wave stays at bottom */
    .profile-line-bg {
        bottom: 0;
    }
}

/* Portfolio New Layout */
#portfolio {
    padding: 100px 0 100px 4rem;
    /* No padding Right to let images flow */
    max-width: 100%;
    overflow: hidden;
}

.portfolio-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    /* Generally align items center */
}

/* Container for text and buttons to stack them */
.portfolio-text-container {
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    /* Space between text and buttons */
}

.portfolio-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ff0000;
}

.portfolio-text p {
    color: var(--text-muted);
    margin: 0;
    /* Margin handled by parent gap */
    font-size: 1.1rem;
}

.portfolio-nav-btns {
    display: flex;
    gap: 1rem;
    /* Aligned left by default in flex column */
}

.pf-nav-btn {
    width: 60px;
    /* Slightly larger buttons */
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #333;
}

.pf-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pf-nav-btn svg {
    width: 28px;
    height: 28px;
}

.portfolio-slider-wrapper {
    flex-grow: 1;
    overflow-x: auto;
    padding-bottom: 50px;
    /* Space for shadow */
    padding-right: 4rem;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.portfolio-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.portfolio-slider {
    display: flex;
    gap: 2rem;
}

.portfolio-card-vertical {
    min-width: 300px;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.portfolio-card-vertical:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-card-vertical img {
    width: 100%;
    /* Ensure image covers fully */
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensure centered */
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card-vertical:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Video Badge on Portfolio Card */
.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    transition: var(--transition);
    pointer-events: none;
    /* Let parent handle clicks */
}

.portfolio-card-vertical:hover .video-badge {
    transform: scale(1.1);
    background: #ff0000;
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    /* Allow scrolling if text is long */
}

.lightbox-content-wrapper {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    position: relative;
    text-align: center;
    padding-bottom: 50px;
}

.lightbox-content {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lightbox-caption h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lightbox-caption p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

/* Discuss Your Advertising Section */
.discuss-section {
    padding: 100px 4rem;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
}

.discuss-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.discuss-title {
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    text-transform: none;
}

.discuss-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3.5rem;
    max-width: 450px;
    line-height: 1.5;
}

.contact-links-boxed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-boxed {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.15rem;
    color: #555;
    font-weight: 400;
}

.contact-icon-red {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-icon-red svg {
    width: 28px;
    height: 28px;
}

/* Form Container Styling */
.discuss-form-wrapper {
    background: #fff;
    padding: 3.5rem;
    border-radius: 35px;
    border: 2px solid var(--primary-color);
    position: relative;
    /* Design uses a subtle shadow that feels like depth */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.discuss-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-weight: 500;
    color: #888;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    background-color: #ededed;
    border: none;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #e5e5e5;
}

.btn-submit-red {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
    margin-top: 1rem;
}

.btn-submit-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
    background-color: #e60000;
}

/* Responsive for Discuss Section */
@media (max-width: 1200px) {
    .discuss-title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .discuss-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .discuss-title {
        font-size: 4.5rem;
    }

    .discuss-form-wrapper {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .discuss-section {
        padding: 5rem 2rem;
    }

    .discuss-title {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
    }

    .discuss-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .discuss-form-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 25px;
    }

    .contact-links-boxed {
        gap: 1.5rem;
    }
}

/* Footer Section */
footer {
    background: #000;
    color: #fff;
    padding: 80px 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
}

/* Global Section Padding on Mobile */
@media (max-width: 768px) {

    .features-section,
    .provide-section,
    .clients-section,
    footer,
    #portfolio {
        padding: 3rem 2rem;
    }

    .provide-grid,
    .features-grid,
    .portfolio-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Portfolio Specifics Mobile */
    .portfolio-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .portfolio-text-container {
        min-width: 100%;
        text-align: center;
        align-items: center;
        gap: 1.5rem;
    }

    .portfolio-text h2 {
        font-size: 2.5rem;
    }

    .portfolio-nav-btns {
        justify-content: center;
    }

    .portfolio-slider-wrapper {
        width: 100%;
        padding-right: 0;
    }
}

/* ============================================
   RESPONSIVE: NAVBAR & HERO - MANDATORY REQUIREMENTS
   Hamburger ONLY on mobile (<600px), NEVER on tablet/iPad
   Desktop & Tablet always horizontal navbar
   ============================================ */

/* Tablet Layout (801px - 1024px) - Horizontal Nav for Larger Tablets/Laptops */
@media (max-width: 1024px) and (min-width: 801px) {

    /* Navbar REMAINS horizontal on tablet/iPad - NO hamburger */
    nav {
        padding: 1rem 2.5rem;
    }

    /* Logo scales down slightly */
    .logo img {
        height: 45px;
    }

    /* Nav links remain horizontal but with smaller gaps */
    .nav-links {
        gap: 1.5rem;
        margin-right: 1.5rem;
    }

    .nav-links li a {
        font-size: 0.95rem;
    }

    /* WhatsApp button slightly smaller */
    .btn-whatsapp-header {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }

    /* Hamburger MUST stay hidden on tablet */
    .menu-toggle {
        display: none !important;
    }

    /* Mobile WhatsApp item stays hidden on tablet */
    .mobile-whatsapp-item {
        display: none !important;
    }

    /* Hero Section - Tablet adjustments */
    .hero-section {
        padding: 100px 2.5rem 60px;
    }

    .hero-card-container {
        min-height: 500px;
        position: relative;
    }

    .hero-content {
        padding: 40px 30px;
        width: 48%;
        /* Restrict width to prevent overlap */
        position: relative;
        z-index: 5;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        /* Reduced to fit better */
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Billboard stays visible and positioned on tablet */
    .hero-image-v2 {
        display: block !important;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 55%;
        /* Slightly reduced to give text breathing room */
        height: 85%;
        z-index: 2;
    }

    .hero-image-v2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
    }

    /* Quote text remains center-aligned */
    .quote-text-white {
        font-size: 2.2rem;
        line-height: 1.3;
        text-align: center;
    }
}

/* Mobile & Small Tablets (<800px) - Hamburger Menu Activated + Hidden Billboard */
@media (max-width: 800px) {

    /* Navbar Mobile - Show hamburger, hide horizontal menu */
    nav {
        padding: 0.9rem 1.5rem;
    }

    .logo img {
        height: 38px;
    }

    /* Hamburger toggle - Show ONLY on mobile */
    .menu-toggle {
        display: flex !important;
    }

    /* Hide desktop WhatsApp button on mobile */
    nav>.btn-whatsapp-header {
        display: none !important;
    }

    /* Mobile Dropdown - FIXED: Solid background, proper visibility */
    .nav-links {
        /* Positioning */
        position: fixed;
        top: 70px;
        left: -100%;
        right: auto;

        /* Appearance - SOLID background like reference */
        background-color: #ffffff;
        width: 280px;
        max-width: calc(100vw - 3rem);
        min-height: 200px;

        /* Layout */
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 1rem 0 1.5rem 0;

        /* Styling */
        border-radius: 0 0 20px 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

        /* Animation */
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        /* Layering - ENSURE visible above content */
        z-index: 9999 !important;

        /* Scrollable if needed */
        overflow-y: auto;
        max-height: calc(100vh - 100px);
    }

    /* Dropdown VISIBLE when active - slide in from left */
    .nav-links.active {
        left: 1.5rem !important;
    }

    /* Menu Items - Clear and readable */
    .nav-links li {
        width: 100%;
        list-style: none;
        margin: 0;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: rgba(255, 0, 0, 0.08);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
    }

    /* Remove desktop underline effect */
    .nav-links li a::after {
        display: none !important;
    }

    /* WhatsApp Button in Dropdown - Below Contact with normal spacing */
    .mobile-whatsapp-item {
        display: block !important;
        width: 100%;
        padding: 0.8rem 1.5rem;
        margin-top: 0.8rem;
        padding-top: 1.2rem;
        border-top: 1px solid #e5e5e5;
    }

    .btn-whatsapp-dropdown {
        background: var(--primary-color) !important;
        color: #fff !important;
        padding: 0.85rem 1.3rem !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        border: none !important;
        border-left: none !important;
        transition: all 0.2s ease !important;
        width: 100%;
    }

    .btn-whatsapp-dropdown:hover {
        background-color: #e60000 !important;
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    }

    /* Hero Section - Vertical stacking on mobile */
    .hero-section {
        padding: 90px 1.5rem 50px;
    }

    .hero-card-container {
        flex-direction: column;
        min-height: auto;
        border-radius: 35px;
        padding: 40px 30px;
    }

    .hero-content {
        padding: 0;
        text-align: center;
    }

    /* Fixed: Font size reduced to prevent overflow for 'Recommendations' */
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        letter-spacing: -0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .btn-explore-white {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        margin: 0 auto;
    }

    /* Billboard COMPLETELY HIDDEN on small mobile screens (Gambar 4) */
    .hero-image-v2 {
        display: none !important;
    }

    /* Quote text center-aligned on mobile */
    .quote-text-white {
        font-size: 1.65rem;
        text-align: center;
        line-height: 1.35;
    }

    /* Bambang Card - Mobile Optimization */
    .profile-card-v2 {
        padding: 1.5rem 1.5rem 0 1.5rem;
        min-height: 240px;
    }

    .profile-name-v2 {
        font-size: 2rem;
    }

    .company-label-v2 {
        font-size: 0.8rem;
    }

    .profile-title-v2 {
        font-size: 0.9rem;
    }

    .profile-image-v2 {
        width: 160px;
        margin-right: -10px;
    }

    .profile-line-bg {
        bottom: 0;
    }
}

/* Footer Center Alignment for Tablet and Mobile */
@media (max-width: 1024px) {
    .footer-grid {
        text-align: center;
        justify-items: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        align-items: center;
    }

    .footer-bottom {
        text-align: center;
    }
}