* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 148, 149, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 148, 149, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    color: #1a9495;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    border: 3px solid #f7d794;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: #f7d794;
    font-style: italic;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f7d794;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #f7d794;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a9495 0%, #26d0ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero-image-main img {
    width: 100%;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-text-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.hero-text-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: textPulse 4s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.02); }
}

.social-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.social-link:hover {
    transform: scale(1.1);
    background: white;
    border-color: #1a9495;
}

.social-link.youtube {
    color: #FF0000;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.tiktok {
    color: #000000;
}

.social-link.behance {
    color: #1769FF;
}

.social-link i {
    font-size: 1.2rem;
}

.floating-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    font-size: 2rem;
    color: #f7d794;
    animation: starFloat 6s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 1.5rem;
}

.star-2 {
    top: 25%;
    right: 10%;
    animation-delay: -1.5s;
    font-size: 2.2rem;
}

.star-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: -3s;
    font-size: 1.8rem;
}

.star-4 {
    top: 60%;
    right: 5%;
    animation-delay: -4.5s;
    font-size: 1.6rem;
}

.star-5 {
    bottom: 15%;
    right: 15%;
    animation-delay: -2s;
    font-size: 2rem;
}

@keyframes starFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #a8cfc9;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d3f3f;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #0d3f3f;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.photobooth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.photobooth-card {
    background: transparent;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photobooth-card:hover {
    transform: translateY(-10px);
}

.photobooth-card:hover .photobooth-description {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.photobooth-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.photobooth-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.photobooth-card:hover .photobooth-image img {
    transform: scale(1.1);
}

.photobooth-label {
    position: relative;
    margin-top: -4rem;
    margin-bottom: 1rem;
    text-align: center;
    z-index: 10;
}

.photobooth-label h3 {
    background: #1a9495;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.photobooth-description {
    background: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 5;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.photobooth-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.learn-more {
    color: #1a9495;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more:hover {
    color: #26d0ce;
    transform: translateX(5px);
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

.photobooth-card.bottom-row {
    grid-column: span 1;
}

/* Responsive untuk photobooth grid */
@media (max-width: 768px) {
    .photobooth-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .photobooth-description {
        padding: 1.5rem 1rem 1rem;
        margin-top: -30px;
        min-height: 160px;
    }
    
    .photobooth-label {
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .photobooth-label h3 {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .photobooth-description {
        margin-top: -25px;
        min-height: 140px;
        padding: 1.25rem 0.75rem 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a9495 0%, #26d0ce 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-item i {
    width: 20px;
    color: #f7d794;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a9495;
    box-shadow: 0 0 0 3px rgba(26, 148, 149, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a9495, #26d0ce);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 148, 149, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: #1a9495;
    font-family: serif;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.customer-info strong {
    color: #333;
    font-weight: 600;
    display: block;
}

.customer-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Client Logos Section */
.clients {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.clients h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.client-logo i {
    font-size: 2.5rem;
    color: #1a9495;
}

.client-logo span {
    font-weight: 500;
    color: #666;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a9495, #26d0ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-placeholder {
    transform: scale(1.1);
}

.blog-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-date {
    color: #666;
}

.blog-category {
    background: #f7d794;
    color: #1a9495;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: #1a9495;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #26d0ce;
    transform: translateX(5px);
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

.blog-cta .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a9495, #26d0ce);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-cta .cta-button:hover {
    background: linear-gradient(135deg, #26d0ce, #1a9495);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 148, 149, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a9495, #26d0ce);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    transform: scale(1.05);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-placeholder p {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f7d794;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f7d794;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1a9495;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a9495;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .brand-main {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.8rem;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .hero-image-main {
        max-width: 100%;
    }
    
    .hero-text-image {
        max-width: 280px;
    }
    
    .hero-text-overlay {
        top: 40%;
        left: 50%;
    }
    
    .social-sidebar {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        transform: none;
        gap: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .star-2, .star-4 {
        font-size: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text-image {
        max-width: 220px;
    }
    
    .hero-text-overlay {
        top: 45%;
        left: 50%;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .brand-main {
        font-size: 0.9rem;
    }
    
    .brand-sub {
        font-size: 0.7rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}