* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    border-bottom: 1px solid #eee;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 24px;
    color: #8e44ad;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item span:first-child {
    font-weight: bold;
    color: #8e44ad;
    font-size: 14px;
}

.info-item span:last-child {
    font-size: 13px;
    color: #666;
}

.whatsapp-button a {
    background-color: #8e44ad;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button a:hover {
    background-color: #7d3c98;
}

.whatsapp-button i {
    font-size: 24px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #8e44ad;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

.hamburger:focus {
    outline: 2px solid #8e44ad;
    outline-offset: 2px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

nav a:hover {
    color: #8e44ad;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('img/bg-bunga.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    padding: 20px 0;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #8e44ad;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    text-align: justify;
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
    .top-bar {
        padding: 0;
        border-bottom: none;
    }

    .contact-info {
        display: none;
    }

    .whatsapp-button {
        width: 100%;
    }

    .whatsapp-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 0;
        margin: 0;
    }

    .whatsapp-button span {
        display: inline;
        font-weight: bold;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    /* Hero responsive */
    .hero {
        height: 50vh;
        min-height: 350px;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    /* About Us responsive */
    .about-us {
        padding: 60px 0;
    }

    .about-content {
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-bar {
        padding: 0;
        border-bottom: none;
    }

    .contact-info {
        display: none;
    }

    .whatsapp-button {
        width: 100%;
    }

    .whatsapp-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 0;
        margin: 0;
    }

    .whatsapp-button span {
        display: inline;
        font-weight: bold;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        flex-wrap: nowrap;
        position: relative;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 80px;
    }

    .logo h1 {
        font-size: 18px;
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    nav {
        width: auto;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 15px 0;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        z-index: 999;
        gap: 0;
    }

    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    nav li {
        border-bottom: 1px solid #f0f0f0;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0;
    }

    .whatsapp-button a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .main-nav {
        padding: 10px 15px;
    }

    .logo img {
        width: 60px;
    }

    .logo h1 {
        font-size: 16px;
    }

    nav ul {
        left: -15px;
        right: 0;
    }

    /* Hero mobile */
    .hero {
        height: 40vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* About Us mobile */
    .about-us {
        padding: 40px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .top-bar {
        padding: 0;
    }

    .whatsapp-button a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .logo h1 {
        font-size: 14px;
    }

    nav ul {
        left: -15px;
        right: 0;
    }

    /* Hero small mobile */
    .hero {
        height: 35vh;
        min-height: 250px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* About Us small mobile */
    .about-us {
        padding: 30px 0;
    }

    .container {
        padding: 0 15px;
    }

    .about-content {
        gap: 20px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    nav a {
        padding: 18px 20px;
    }
    
    .hamburger {
        padding: 12px;
    }
    
    .whatsapp-button a {
        padding: 16px 20px;
    }
}
/* --- PRODUCT SECTION --- */
.produk-section {
    padding: 80px 0;
    background: #fff;
}

.produk-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 40px;
    font-weight: bold;
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.produk-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    background: #f8f9fa;
}

.produk-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.produk-card:hover img {
    transform: scale(1.04);
}

.produk-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: rgba(142,68,173,0.75);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 24px 0 16px 0;
    letter-spacing: 1px;
    width: 100%;
    transition: background 0.3s;
}

.produk-card:hover .produk-overlay {
    background: rgba(142,68,173,0.92);
}

@media (max-width: 1024px) {
    .produk-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 18px;
    }
    .produk-card img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .produk-grid {
        grid-template-columns: 1fr 1fr;
    }
    .produk-card img {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .produk-section {
        padding: 40px 0;
    }
    .produk-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .produk-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .produk-card img {
        height: 160px;
    }
    .produk-overlay {
        font-size: 1.1rem;
        padding: 14px 0 10px 0;
    }
}

/* --- END PRODUCT SECTION --- */

/* --- LAYANAN KAMI SECTION --- */
.layanan-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.layanan-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 40px;
    font-weight: bold;
}
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.layanan-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 22px 22px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #eee;
}
.layanan-card:hover {
    box-shadow: 0 6px 24px rgba(142,68,173,0.10);
    transform: translateY(-4px) scale(1.01);
}
.layanan-icon {
    flex-shrink: 0;
    font-size: 2.2rem;
    color: #b06fd3;
    margin-top: 4px;
}
.layanan-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: #b06fd3;
    font-weight: bold;
}
.layanan-content p {
    margin: 0;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .layanan-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .layanan-section {
        padding: 40px 0;
    }
    .layanan-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .layanan-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .layanan-card {
        padding: 18px 12px 14px 12px;
        font-size: 0.98rem;
    }
    .layanan-icon {
        font-size: 1.5rem;
    }
}
/* --- END LAYANAN KAMI SECTION --- */

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}
.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 40px;
    font-weight: bold;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(142,68,173,0.10);
}
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.2s;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
    margin-bottom: 20px;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    text-shadow: 0 2px 8px #000;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(142,68,173,0.85);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(142,68,173,1);
}
.lightbox-prev {
    left: 40px;
}
.lightbox-next {
    right: 40px;
}
@media (max-width: 700px) {
    .lightbox-close {
        top: 10px;
        right: 16px;
        font-size: 2rem;
    }
    .lightbox-prev, .lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        left: 10px;
        right: 10px;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
}
/* --- END GALLERY SECTION --- */

/* --- KONTAK & MAPS SECTION --- */
.kontak-section {
    padding: 80px 0 60px 0;
    background: #f8f9fa;
}
.kontak-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.kontak-info {
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 28px;
    margin-bottom: 20px;
}
.kontak-title {
    font-size: 2rem;
    color: #8e44ad;
    margin-bottom: 24px;
    font-weight: bold;
}
.kontak-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #333;
}
.kontak-item i {
    font-size: 1.5rem;
    color: #25d366;
}
.kontak-item .fa-phone {
    color: #8e44ad;
}
.kontak-item a {
    color: #25d366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.kontak-item a:hover {
    color: #128c7e;
    text-decoration: underline;
}
.kontak-maps {
    flex: 2 1 400px;
    min-width: 280px;
    max-width: 700px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    background: #fff;
}
@media (max-width: 900px) {
    .kontak-container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .kontak-maps {
        max-width: 100%;
        height: 240px;
    }
}
@media (max-width: 600px) {
    .kontak-section {
        padding: 40px 0 30px 0;
    }
    .kontak-info {
        padding: 18px 12px;
        font-size: 1rem;
    }
    .kontak-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    .kontak-maps {
        height: 180px;
    }
}
/* --- END KONTAK & MAPS SECTION --- */

