@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 40px;
    box-sizing: border-box;
    background: transparent !important;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    transition: top 0.4s ease-in-out;
}

.navbar.hide {
    top: -100px;
}

.logo-navbar {
    flex-shrink: 0;
}

.logo-navbar a {
    text-decoration: none;
}

.logo-navbar p {
    color: #25343F;
    font-family: 'Pacifico', cursive;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu ul li {
    list-style-type: none;
}

.nav-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #25343F;
    padding: 12px 15px;
    border-bottom: 3px solid transparent;
    border-radius: 0px;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
}

.nav-menu ul li a:hover {
    color: #333;
    border-bottom: 3px solid #333;
    background-color: transparent;
    box-shadow: none;
}

.nav-button {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.nav-button .btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #25343F;
    border: 2px solid #25343F;
    border-radius: 0;
    cursor: pointer;
    transition: .3s ease;
}

.nav-button .btn:hover {
    background-color: #25343F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #25343F;
    border-radius: 2px;
    transition: .3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        height: 80px;
    }

    .logo-navbar p {
        font-size: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #efefef;
        flex-direction: column;
        padding: 20px 0;
        display: none;
        justify-content: flex-start;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu ul li {
        padding: 15px 20px;
    }

    .nav-menu ul li a {
        font-size: 16px;
        padding: 0;
    }

    .nav-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
        height: -70px;
    }

    .nav-button {
        display: none;
    }

    .logo-navbar p {
        font-size: 24px;
    }
}

/* Services Section */
.services {
    display: flex;
    align-items: stretch;
    padding: 0;
    background-color: white;
    position: relative;
    min-height: 600px;
}

/* Services Image - Full Height Sebelah Kanan */
.services-img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    order: 2;
    flex-shrink: 0;
}

.services-img:hover {
    opacity: 0.9;
}

/* Border Message Wrapper */
.border-message {
    display: flex;
    gap: 30px;
    padding: 80px 60px;
    flex: 1;
    order: 1;
    align-items: stretch;
    width: 60%;
    margin-top: 50px;
}

/* Message Services (Feedback Form) */
.message-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 40px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.message-services h2 {
    font-size: 28px;
    font-weight: 700;
    color: #25343F;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.message-services p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Customer Feedback Form */
.costumer {
    margin-top: 15px;
}

.costumer form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.costumer input[type="text"],
.costumer input[type="email"],
.costumer textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    resize: vertical;
    background-color: transparent;
}

.costumer input[type="text"]:focus,
.costumer input[type="email"]:focus,
.costumer textarea:focus {
    outline: none;
    border-bottom-color: #25343F;
    box-shadow: none;
}

.costumer input[type="text"]::placeholder,
.costumer input[type="email"]::placeholder,
.costumer textarea::placeholder {
    color: #999;
}

.costumer textarea {
    min-height: 80px;
    resize: vertical;
}

.costumer label {
    font-size: 13px;
    font-weight: 600;
    color: #25343F;
    margin-top: 10px;
}

.costumer input[type="submit"] {
    padding: 12px 30px;
    background-color: #25343F;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.costumer input[type="submit"]:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 52, 63, 0.3);
}

/* Message Box (Newsletter) */
.message-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
    flex: 1;
}

.message-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #25343F;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.message-box p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.message-input-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-input {
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: transparent;
}

.message-input:focus {
    outline: none;
    border-bottom-color: #25343F;
    box-shadow: none;
}

.message-input::placeholder {
    color: #999;
}

.message-btn {
    padding: 12px 30px;
    background-color: #25343F;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.message-btn:hover {
    background-color: #25343F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive - Tablet (768px ke bawah) */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        gap: 0;
        padding: 0;
        min-height: auto;
    }

    .services-img {
        width: 100%;
        height: 300px;
        order: -1;
    }

    .border-message {
        width: 100%;
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        order: auto;
    }

    .message-services,
    .message-box {
        padding: 30px;
    }

    .message-services h2,
    .message-box h2 {
        font-size: 24px;
    }

    .message-services p,
    .message-box p {
        font-size: 14px;
    }

    .costumer input[type="text"],
    .costumer input[type="email"],
    .costumer textarea,
    .message-input {
        font-size: 12px;
        padding: 10px 0;
    }
}

/* Mobile (480px ke bawah) */
@media (max-width: 480px) {
    .services {
        flex-direction: column;
        gap: 0;
        padding: 0;
        min-height: auto;
    }

    .services-img {
        width: 100%;
        height: 250px;
        order: -1;
    }

    .border-message {
        width: 100%;
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        order: auto;
    }

    .message-services,
    .message-box {
        padding: 20px;
    }

    .message-services h2,
    .message-box h2 {
        font-size: 20px;
    }

    .message-services p,
    .message-box p {
        font-size: 12px;
    }

    .costumer form {
        gap: 12px;
    }

    .costumer input[type="text"],
    .costumer input[type="email"],
    .costumer textarea,
    .message-input {
        font-size: 11px;
        padding: 8px 0;
    }

    .costumer textarea {
        min-height: 60px;
    }

    .costumer input[type="submit"],
    .message-btn {
        font-size: 11px;
        padding: 10px 20px;
    }
}
/* Footer */
.footer {
    background-color: #25343F;
    color: white;
    padding: 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Logo Footer */
.logo-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-footer p {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
    color: white;
    margin: 0;
    font-weight: 600;
}

.text-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.8;
}

.footer-nav a:hover {
    color: white;
}

/* Footer Categories */
.footer-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-categories h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-categories a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.8;
}

.footer-categories a:hover {
    color: white;
}

/* Social & Payment Wrapper (1 kolom, 2 baris) */
.social-payment-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Social Container */
.social-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-container h5 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.social-icon:hover {
    background-color: #007bff;
    transform: translateY(-2px);
}

/* Footer Payment */
.footer-payment {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-payment h5 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.payment-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Subscribe */
.subcribe {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subcribe h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.subcribe input {
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.subcribe input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
}

.subcribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.subscribe-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .footer {
        padding: 40px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .logo-footer {
        grid-column: 1 / -1;
    }

    .logo-footer p {
        font-size: 28px;
    }

    .footer-nav h4,
    .footer-categories h4,
    .subcribe h4 {
        font-size: 15px;
    }

    .social-icon,
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .logo-footer p {
        font-size: 24px;
    }

    .footer-nav h4,
    .footer-categories h4,
    .subcribe h4 {
        font-size: 14px;
    }

    .social-icon,
    .payment-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .social-icons-wrapper,
    .payment-icons-wrapper {
        gap: 8px;
    }

    .subcribe input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .subscribe-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}
