/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary: #FF3F56;          /* Red Watermelon */
    --primary-hover: #E53E50;
    --secondary: #1E5128;        /* Forest Green (Trust) */
    --secondary-hover: #143F1D;
    --secondary-light: #4E9F3D;  /* Leaf Green (Freshness) */
    --accent-orange: #FF9F29;    /* Welcoming, Economical Accent */
    --accent-yellow: #FFB800;
    
    /* Neutrals */
    --bg-light: #F9FBF7;         /* Warm/Fresh off-white */
    --bg-card: #FFFFFF;
    --text-dark: #1A2C1B;        /* High-contrast dark green-black */
    --text-muted: #526A54;       /* Safe readability */
    --white: #FFFFFF;
    
    /* Formatting & Layout */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
    
    --shadow-sm: 0 4px 12px rgba(26, 44, 27, 0.04);
    --shadow-md: 0 12px 36px rgba(26, 44, 27, 0.08);
    --shadow-lg: 0 20px 48px rgba(26, 44, 27, 0.12);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

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

/* Scroll Animation Trigger Classes */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-anim.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   NAVIGATION HEADER (GLASSMORPHISM)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 251, 247, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(78, 159, 61, 0.08);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    transition: var(--transition-smooth);
}

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

.brand-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-name {
    display: none; /* Logo already contains the brand name */
}

/* Footer restores brand name */
.footer-brand-info .brand-name {
    display: block;
}

.brand-name .accent-text {
    color: var(--primary);
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--secondary-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(255, 63, 86, 0.2);
    display: inline-block;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 63, 86, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav-toggle .close-icon {
    display: none;
}

/* ==========================================================================
   HERO BANNER SECTION (AUTO SLIDING)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 5;
    color: var(--white);
    max-width: 800px;
}

.badge {
    background: rgba(78, 159, 61, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-yellow);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-slide h1,
.hero-slide h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-slide p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 680px;
}

/* Animations inside Active Slide */
.hero-slide.active .fade-in {
    animation: fadeInUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .badge.fade-in { animation-delay: 0.1s; }
.hero-slide.active h1.fade-in, 
.hero-slide.active h2.fade-in { animation-delay: 0.25s; }
.hero-slide.active p.fade-in { animation-delay: 0.4s; }
.hero-slide.active .hero-actions.fade-in { animation-delay: 0.55s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 63, 86, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 63, 86, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Slider navigation */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slide-arrow:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.prev-arrow { left: 32px; }
.next-arrow { right: 32px; }

/* Indicators / Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 32px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary);
    width: 48px;
}

/* ==========================================================================
   COMMON SECTION HEADER
   ========================================================================== */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary-light);
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: -0.75px;
}

.title-bar {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   KEUNGGULAN SECTION (CARDS)
   ========================================================================== */
.features-section {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(78, 159, 61, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(78, 159, 61, 0.15);
}

.feature-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: var(--border-radius-md);
    background: rgba(78, 159, 61, 0.08);
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* ==========================================================================
   GALERI ALBUM SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-light);
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    background: rgba(78, 159, 61, 0.06);
    color: var(--secondary);
    border-color: var(--secondary-light);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    box-shadow: 0 6px 18px rgba(30, 81, 40, 0.25);
    transform: translateY(-1px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Gallery Card */
.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f2f0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

/* Badge tanggal di pojok kanan atas */
.gallery-date-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.8px;
    z-index: 5;
    text-transform: uppercase;
}

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,40,22,0.85) 0%, rgba(20,40,22,0.3) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 40px; height: 40px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Card Caption */
.card-caption {
    padding: 16px 18px 18px;
}

.card-caption h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-caption p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* ==========================================================================
   HUBUNGI KAMI / CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

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

.contact-info-col .section-subtitle,
.contact-info-col .section-title,
.contact-info-col .title-bar {
    margin-left: 0;
}

.contact-lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon-box.wa-style {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.contact-icon-box.mail-style {
    background: linear-gradient(135deg, #FF5B5B, #D32F2F);
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.25);
}

.contact-icon-box.tiktok-style {
    background: linear-gradient(135deg, #010101, #333333);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.contact-details span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-link:hover {
    color: var(--secondary-light);
}

.cta-direct-buttons {
    display: flex;
    gap: 16px;
}

.btn-whatsapp-direct {
    background-color: #25D366;
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-direct:hover {
    background-color: #20BA56;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* Glassmorphism Partnership Form */
.contact-form-col {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(78, 159, 61, 0.08);
    box-shadow: var(--shadow-md);
    padding: 48px;
}

.form-card-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.form-card-wrapper p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid rgba(78, 159, 61, 0.15);
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-light);
    box-shadow: 0 0 0 4px rgba(78, 159, 61, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a2c1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.btn-submit-form {
    margin-top: 10px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 1.05rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 63, 86, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.btn-submit-form:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 63, 86, 0.35);
}

.btn-submit-form:hover .submit-arrow {
    transform: translateX(4px);
}

.submit-arrow {
    transition: var(--transition-smooth);
}

/* ==========================================================================
   PHOTO LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 44, 27, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 24px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--secondary-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-info .brand-name {
    color: var(--white);
    display: block; /* Ensure it shows in footer */
}

.footer-brand-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 24px 0;
    max-width: 480px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-col a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-col a:hover {
    color: var(--accent-orange);
    padding-left: 6px;
}

.footer-bottom {
    background-color: var(--secondary-hover);
    padding: 30px 0;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }

    .main-header.nav-active .close-icon {
        display: block;
    }

    .main-header.nav-active .menu-icon {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 100px 40px;
        display: flex;
        flex-direction: column;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .nav-cta {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }

    /* Hero adjustments */
    .hero-slide h1,
    .hero-slide h2 {
        font-size: 2.25rem;
    }

    .hero-slide p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .slide-arrow {
        width: 44px;
        height: 44px;
    }

    .prev-arrow { left: 16px; }
    .next-arrow { right: 16px; }

    /* Footer adjustments */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 30px 24px;
    }
}

/* ==========================================================================
   LOKASI TOKO SECTION
   ========================================================================== */
.locations-section {
    background-color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(78, 159, 61, 0.08);
    transition: var(--transition-smooth);
}

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

.location-map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f0e8;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location-info {
    padding: 24px 28px 28px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.kediri-badge {
    background: rgba(255, 63, 86, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 63, 86, 0.2);
}

.klaten-badge {
    background: rgba(78, 159, 61, 0.08);
    color: var(--secondary-light);
    border: 1px solid rgba(78, 159, 61, 0.2);
}

.location-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.location-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-open-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(30, 81, 40, 0.18);
}

.btn-open-maps:hover {
    background-color: var(--secondary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 81, 40, 0.28);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slide h1,
    .hero-slide h2 {
        font-size: 1.85rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .cta-direct-buttons {
        flex-direction: column;
    }
}
