/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #065f46;
    /* Emerald 800 */
    --secondary-color: #047857;
    /* Emerald 700 */
    --accent-color: #059669;
    /* Emerald 600 */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --grid-color: rgba(6, 95, 70, 0.15);
    --nav-bg: rgba(255, 255, 255, 0.7);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.4);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-padding {
    padding: 100px 0;
}

/* ===== BACKGROUND PATTERN (Checkered Grid) ===== */
.pattern-bg {
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: var(--bg-gray);
}

.pattern-bg-sticky {
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: var(--bg-gray);
    background-attachment: fixed;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 500;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-menu li a {
    color: var(--text-main);
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.btn-hubungi {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.btn-hubungi:hover {
    background: white;
    color: var(--primary-color);
}

.nav-wa-mobile {
    display: none;
}

.navbar.scrolled .btn-hubungi {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--text-main);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-left {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(255,255,255,0) 70%);
    width: 800px;
    height: 800px;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(60px);
}

.shape-right {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255,255,255,0) 70%);
    width: 600px;
    height: 600px;
    right: -150px;
    top: -50px;
    filter: blur(60px);
    opacity: 0.8;
}


.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-content {
    color: var(--text-main);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.mockup-desktop {
    width: 100%;
    aspect-ratio: 16/9;
    background: white;
    border-radius: 12px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.mockup-topbar {
    height: 24px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.mockup-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-topbar span:nth-child(1) { background: #ef4444; }
.mockup-topbar span:nth-child(2) { background: #eab308; }
.mockup-topbar span:nth-child(3) { background: #22c55e; }

.mockup-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-image-wrapper:hover .mockup-desktop {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px);
    }

    100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

/* ===== TITLES ===== */
.section-title-wrapper {
    margin-bottom: 60px;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-title-wrapper p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== OPENSID SECTION (NEW LAYOUT) ===== */
.opensid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Mengapa Memilih Kami Card */
.why-us-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-us-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e0f2fe;
    /* Light blue/gray, fits with green theme nicely or can be green */
    background: var(--grid-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.why-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Apa itu OpenSID Content */
.opensid-content h2 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.opensid-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.opensid-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.opensid-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== THEME SECTION ===== */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.theme-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.theme-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.theme-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.theme-card:hover .theme-img-wrap img {
    transform: scale(1.05);
}

.theme-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.theme-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.theme-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-theme {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
}

/* ===== WHY IMPORTANT SECTION ===== */
.bg-gray {
    background-color: var(--bg-gray);
}

.important-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.important-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.important-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.05);
}

.important-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    color: white;
    margin-bottom: 20px;
    transition: var(--transition);
}

.important-item:hover .important-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Colorful modern icons */
.important-icon.icon-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.important-icon.icon-green { background: linear-gradient(135deg, #10b981, #34d399); }
.important-icon.icon-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.important-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

.important-text h3 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.important-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .important-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .important-list {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '\ebaa';
    /* boxicons bx-zoom-in */
    font-family: 'boxicons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ===== SOSMED SECTION ===== */
.sosmed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.sosmed-card {
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sosmed-card.gradient-pink {
    background: linear-gradient(135deg, #e052a0, #f15c41);
}

.sosmed-card.gradient-orange {
    background: linear-gradient(135deg, #f06a6c, #f3903f);
}

.sosmed-card.solid-white {
    background: white;
    color: #333;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
    border: none;
}

.sosmed-badge {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.solid-white .sosmed-badge {
    color: #a855f7;
}

.gradient-pink .sosmed-badge { color: #facc15; }
.gradient-orange .sosmed-badge { color: #22d3ee; }

.sosmed-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.sosmed-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.solid-white .sosmed-price {
    color: #a855f7;
}

.sosmed-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sosmed-main-features {
    list-style: none;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.solid-white .sosmed-main-features {
    border-bottom: 1px solid #e5e7eb;
}

.sosmed-main-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sosmed-main-features li i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.solid-white .sosmed-main-features li i {
    color: #a855f7;
}

.sosmed-cakupan h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.solid-white .sosmed-cakupan h4 {
    color: #a855f7;
}

.sosmed-cakupan ul {
    list-style: none;
    margin-bottom: 30px;
}

.sosmed-cakupan ul li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.sosmed-cakupan ul li::before {
    content: "•";
    font-size: 1.2rem;
    line-height: 0.8;
}

.solid-white .sosmed-cakupan ul li::before {
    color: #6b7280;
}

.btn-sosmed-new {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: var(--transition);
    margin-top: auto;
    text-decoration: none;
}

.gradient-pink .btn-sosmed-new {
    background: white;
    color: #ed4b9e;
}

.solid-white .btn-sosmed-new {
    background: linear-gradient(90deg, #e84c9c, #d53a9d);
    color: white;
}

.gradient-orange .btn-sosmed-new {
    background: white;
    color: #f26f68;
}

.btn-sosmed-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .sosmed-grid {
        grid-template-columns: 1fr;
    }
    .sosmed-card.solid-white {
        transform: scale(1);
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-gray);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
}

/* ===== CONTACT SECTION NEW ===== */
.contact-new-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* Left: Layanan Pelanggan */
.contact-cs {
    padding: 60px 50px;
    text-align: center;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cs-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.cs-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cs-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #22c55e;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
}

.contact-cs h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.contact-cs p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cs-hours {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.hours-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hours-text {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.hours-note {
    font-size: 0.8rem;
    color: #ef4444;
}

/* Right: Hubungi Kami */
.contact-direct {
    padding: 60px 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-direct h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.contact-direct p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-list {
    margin-bottom: 40px;
}

.c-item-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.c-item-new:last-child {
    margin-bottom: 0;
}

.c-icon-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.c-item-new h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.c-item-new span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-wa-direct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-wa-direct:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer>.container>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-cta {
    margin-bottom: 30px;
}

.website-address {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-wa-mobile {
        display: block;
        margin-top: 15px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 50px;
        box-shadow: none;
        transition: 0.4s ease;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        color: var(--text-main);
    }

    .navbar.scrolled .nav-menu li a {
        color: var(--text-main);
    }

    .btn-hubungi {
        display: none;
    }

    .hamburger {
        display: block;
        color: var(--text-main);
    }

    .navbar.scrolled .hamburger {
        color: var(--text-main);
    }

    .pricing-grid,
    .sosmed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .contact-new-wrapper {
        grid-template-columns: 1fr;
    }

    .opensid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .opensid-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .sosmed-grid {
        grid-template-columns: 1fr;
    }

    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .contact-new-wrapper {
        max-width: 100%;
    }

    .contact-cs,
    .contact-direct {
        padding: 40px 30px;
    }

    .contact-direct {
        order: -1;
    }

    /* Hubungi Kami diatas pada versi mobile */
}

@media (max-width: 480px) {

    .theme-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }
}