/* Custom Our Services Section ala gambar */
.services {
    padding: 60px 0 60px 0;
    background: #fff;
    text-align: center;
}
.services h2 {
    font-size: 2.5rem;
    color: #021957;
    font-family: 'Cormorant Garamond', serif;
    font-weight: normal;
    margin-bottom: 36px;
}
.service-card {
    background: #fff;
    border: 1.5px solid #1a357d33;
    border-radius: 6px;
    box-shadow: none;
    padding: 32px 24px 32px 24px;
    max-width: 370px;
    margin: 0 auto 32px auto;
    text-align: left;
    position: relative; /* required for absolute popup inside card */
}
.service-card h3 {
    font-size: 1.35rem;
    color: #1a357d;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    margin-bottom: 18px;
}
.service-card p {
    color: #3a445e;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    margin-bottom: 28px;
}
.service-card .service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    background: #fff;
    border: 1.5px solid #d6d6e7;
    border-radius: 10px;
    color: #1a357d;
    font-size: 1.15rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: normal;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
}
.service-card .service-btn:hover {
    background: #f5f7fa;
}
.service-card .service-btn i {
    margin-left: 12px;
    font-size: 1.3em;
}

/* Popup list shown when Learn More clicked */
.service-detail-list {
    display: none; /* hidden by default */
}
.service-card.open .service-detail-list {
    display: block;
    position: absolute;
    right: 16px;
    top: 60px; /* a bit below the button */
    width: 320px;
    max-height: 420px;
    overflow: auto;
    background: #fff;
    border: 1px solid #e6e6ef;
    border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 12px 30px rgba(18, 30, 70, 0.12);
    z-index: 2000;
}
.service-detail-list li {
    margin: 8px 0;
    color: #3a445e;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* small screens: make popup full width under card */
@media (max-width: 480px) {
    .service-card.open .service-detail-list {
        position: static;
        width: 100%;
        max-height: none;
        box-shadow: none;
        border-radius: 6px;
        margin-top: 12px;
    }
}
/* Our Values Section */
.our-values {
    padding: 30px 20px 60px;
    background: #fff;
    text-align: center;
}
.our-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.our-value-card {
    background: none;
    border-radius: 12px;
    padding: 32px 18px 28px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.our-value-icon {
    width: 280px;
    height: 298px;
    margin-bottom: 18px;
    object-fit: contain;
}
.our-value-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 8px 0 10px 0;
    color: #1a357d;
    font-family: 'Cormorant Garamond', serif;
}
.our-value-card p {
    color: #3a445e;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .our-values-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .our-value-card {
        padding: 24px 8px 20px;
    }
    .our-value-icon {
        width: 70px;
        height: 70px;
    }
       .our-value-icon {
        width: 280px;
        height: 298px;
    }
}
/* Custom Swiper navigation & pagination for team section */
.team-swiper {
        position: relative;
}
.team-swiper .swiper-button-prev,
.team-swiper .swiper-button-next {
        color: #080161d8;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
}
.team-swiper .swiper-button-prev {
        left: 0;
}
.team-swiper .swiper-button-next {
        right: 0;
}
.team-swiper-pagination {
        position: absolute !important;
        left: 0;
        right: 0;
        bottom: -32px !important;
        margin: 0 auto;
        z-index: 5;
}
@media (max-width: 768px) {
    .team-swiper .swiper-button-prev,
    .team-swiper .swiper-button-next {
        top: 45%;
        width: 32px;
        height: 32px;
    }
    .team-swiper-pagination {
        bottom: -24px !important;
    }
}
/* Center hero section content */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.9;
            color: #333;
        }

        /* Header */
        header {
            background: white;
            padding: 5px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

/* Sticky header: stays on top and hides on scroll down, shows on scroll up */
header {
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3000;
    transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
header.hide {
    transform: translateY(-110%);
}
header.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 6px 18px rgba(10,20,50,0.06);
}

/* Make header a bit more compact when user scrolls down (follows scroll, but stays visible) */
header.small {
    /* don't hide the header; make it slightly smaller */
    transform: none;
}
header.small nav {
    padding: 4px 12px;
}
header.small .logo img {
    width: 100px !important;
    height: 90px !important;
    object-fit: contain;
}
/* optionally reduce menu link size when header is small */
header.small nav a {
    font-size: 0.95rem;
}

        nav {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            width: 100%;
            position: relative;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #55668b;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo img {
            display: block;
            width: 100px;
            height: 90px;
            object-fit: contain;
        }

        nav ul {
            list-style: none;
            gap: 16px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }

        /* Ensure icons inside nav links are visible and aligned */
        .nav-menu a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-menu a i {
            font-size: 1.05rem;
            line-height: 1;
            color: inherit; /* inherit color from the link */
        }

        /* Highlight WhatsApp icon in nav */
        .nav-menu a .fa-whatsapp {
            color: #25D366; /* WhatsApp green */
        }

        /* Inline SVG fallback sizing for nav WhatsApp */
        .nav-whatsapp-svg {
            width: 18px;
            height: 18px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 6px;
        }

        nav a:hover {
            color: #8B7355;
        }
        /* Pastikan di media query (misalnya max-width: 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 2000;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        margin-top: 8px;
        background: white;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        display: none;
        width: 80vw;
        max-width: 320px;
        z-index: 1500;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        color: #333;
        padding: 8px 4px;
        display: block;
    }
}

        /* Hero Section */
      .hero {
    background: linear-gradient(rgba(239, 241, 253, 0.76), rgba(197, 203, 218, 0.521)), 
                url('images/list1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;              /* lebih natural, tidak fix height */
    text-align: center;
    color: white;
    flex-direction: column;
    gap: -2px;

}s

/* Supaya jarak antar elemen mirip contoh */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;                     /* kontrol JARAK antar elemen */
}

/* Title */
.hero-content h1 {
    font-size: 42px;
    margin: 0;                    /* hilangkan jarak berlebih */
    font-weight: 500;
    line-height: 1.1;
}

/* Logo */
.hero-content .hero-logo {
    width: 250px;                 /* ukuran mirip contoh */
    height: auto;
    margin: 0;
    display: block;
    transform: translateY(-60px);
}

/* Subtitle */
.hero-content p {
    font-size: 22px;
    margin: 0;
    font-weight: 800;
    transform: translateY(-100px);
}


        /* Hero logo (used instead of text) */
        .hero-content .hero-logo {
            display: block;
            width: 260px;
            height: auto;
            margin: px auto 2px;
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
        }

        .about h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #0f1a7e;
        }

        .about p {
            max-width: 800px;
            margin: 0 auto 40px;
            color: #3a445e;
        }

        /* Photo Gallery */
        .gallery {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .gallery-item {
            width: 150px;
            height: 150px;
            background: #E8DDD4;
            border-radius: 10px;
            transform: rotate(-5deg);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .gallery-item:nth-child(2) {
            transform: rotate(3deg);
        }

        .gallery-item:nth-child(3) {
            transform: rotate(-3deg);
        }

        .gallery-item:hover {
            transform: rotate(0deg) scale(1.05);
        }

        /* Couple Section */
        .couple {
            background: linear-gradient(rgba(1, 4, 129, 0.801), rgba(171, 170, 228, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%238B7355" width="1200" height="400"/></svg>');
            padding: 80px 50px;
            color: white;
            text-align: center;
        }

        /* Team Section */
        .team {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .team h2 {
            font-size: 35px;
            margin-bottom: 50px;
            color: #090155ea;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: #E8DDD4;
            margin: 0 auto 15px;
        }

        /* Services */
        .services {
            padding: 80px 20px;
            background: #F9F7F5;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .services h2 {
            font-size: 36px;
            margin-bottom: 50px;
            color: #050370;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #8B7355;
            border-radius: 50%;
            margin: 0 auto 20px;
        }

        /* Process Circle */
        .process {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .process h2 {
            font-size: 36px;
            margin-bottom: 50px;
            color: #8B7355;
        }
        /* Intro centered text similar to example */
        .process-intro {
            max-width: 760px;
            margin: 0 auto 40px;
            text-align: center;
            color: #333;
        }
        .process-intro h2 {
            font-family: 'Cormorant Garamond', serif;
            color: #122a64;
            font-size: 36px;
            margin-bottom: 16px;
        }
        .process-intro p {
            color: #556678;
            line-height: 1.6;
            font-size: 1rem;
            margin: 0;
        }

        /* Timeline layout */
        .process-timeline {
            max-width: 980px;
            margin: 48px auto 0;
            padding: 0 16px;
        }

        .timeline {
            position: relative;
            padding-left: 120px; /* space for icons and connector */
        }

        /* vertical dotted line */
        .timeline::before {
            content: '';
            position: absolute;
            left: 60px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            border-right: 2px dashed rgba(26,53,125,0.15);
        }

        .timeline-item {
            position: relative;
            padding: 28px 0;
        }

        .step-icon {
            position: absolute;
            left: 26px;
            top: 6px;
            width: 68px;
            height: 68px;
            background: #1a357d;
            color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transform: rotate(-10deg);
            box-shadow: 0 8px 20px rgba(18,34,80,0.12);
        }

        .step-icon i { transform: rotate(10deg); }

        .step-content h4 {
            margin: 0 0 6px 0;
            color: #122a64;
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
        }

        .step-content p {
            margin: 0;
            color: #556678;
            line-height: 1.6;
            font-size: 0.98rem;
        }

        /* move content to the right of icons */
        .step-content {
            margin-left: 120px;
            padding-right: 40px;
        }

        /* Responsive: stack icon and content on small screens */
        @media (max-width: 768px) {
            .timeline {
                padding-left: 18px;
            }
            .timeline::before { left: 10px; }
            .step-icon { left: 0; width: 48px; height: 48px; top: 6px; transform: rotate(0deg); }
            .step-icon i { transform: rotate(0deg); }
            .step-content { margin-left: 64px; padding-right: 0; }
            .process-intro p { font-size: 0.98rem; }
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #F9F7F5;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq h2 {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            color: #020349e5;
        }

        .faq-item {
            background: white;
            padding: 25px;
            margin-bottom: 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .faq-question {
            font-weight: bold;
            color: #020349e5;
            margin-bottom: 10px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 36px;
            margin-bottom: 40px;
            color: #020349e5;
        }

        /* Testimonials as Swiper slider */
        .testimonials .swiper {
            padding-bottom: 28px; /* space for pagination */
        }

        .testimonials-swiper .swiper-wrapper {
            align-items: start;
        }

        .testimonials-swiper .swiper-slide {
            display: flex;
            justify-content: center;
        }

        .testimonial-card {
            background: #F9F7F5;
            padding: 20px;
            border-radius: 10px;
            text-align: left;
            box-shadow: 0 6px 18px rgba(10,20,50,0.04);
            width: 100%;
            max-width: 360px;
        }

        .testimonial-photo {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
            margin-bottom: 14px;
        }

        .testimonial-card h3 {
            margin: 0 0 8px 0;
            font-size: 1.1rem;
            color: #122a64;
        }

        .testimonial-card p {
            margin: 0 0 10px 0;
            color: #3a445e;
            line-height: 1.6;
        }

        .testimonials .testimonials-pagination {
            margin-top: 12px;
        }

        /* Contact */
        .contact {
            padding: 80px 20px;
            background: #020349d7;
            color: white;
            text-align: center;
        }

        .contact h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 40px auto;
        }

        .contact-person {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
        }

        .btn {
            background: white;
                font-size: 40px;
                margin-bottom: 50px;
                color: #1a357d;
                font-family: 'Cormorant Garamond', serif;
                font-weight: normal;
                letter-spacing: 0;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 15px;
            transition: all 0.3s;
        }

        .btn:hover {
            background: #E8DDD4;
        }

        /* WhatsApp button variant */
        .btn.whatsapp-btn {
            background: #1a357d; /* navy */
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            text-decoration: none;
            border: none;
        }

        .btn.whatsapp-btn i {
            font-size: 1.1rem;
            line-height: 1;
        }

        .btn.whatsapp-btn:hover {
            background: #12264f; /* slightly darker navy */
            text-decoration: none;
        }

        /* Portfolio */
        .portfolio {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio h2 {
            font-size: 36px;
            margin-bottom: 50px;
            text-align: center;
            color: #12264f;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .portfolio-image {
            display: block;
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 0; /* handled by .portfolio-item */
        }

        .portfolio-info {
            padding: 16px;
            background: white;
        }

        .portfolio-info .see-more {
            display: inline-block;
            margin-top: 12px;
            background: #12264f; /* requested navy */
            color: #fff;
            padding: 8px 14px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.15s ease;
        }

        .portfolio-info .see-more:hover {
            background: #0f1f43;
        }

        /* Blog */
        .blog {
            padding: 80px 20px;
            background: #1A3B5C;
            color: white;
        }

                /* Galleries Section */
                .galleries {
                    padding: 72px 20px;
                    max-width: 1200px;
                    margin: 0 auto;
                    text-align: center;
                }

                .galleries h2 {
                    font-size: 36px;
                    color: #12264f;
                    margin-bottom: 10px;
                    font-family: 'Cormorant Garamond', serif;
                }

                .galleries-intro {
                    color: #556678;
                    margin-bottom: 28px;
                    max-width: 820px;
                    margin-left: auto;
                    margin-right: auto;
                    font-family: 'Cormorant Garamond', serif;
                }

                .galleries-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                    gap: 18px;
                    align-items: stretch;
                    margin-bottom: 20px;
                }

                /* Gallery nav buttons (overlay) */
                .galleries {
                    position: relative;
                }

                .galleries-nav {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 44px;
                    height: 44px;
                    border-radius: 50%;
                    border: none;
                    background: rgba(255,255,255,0.95);
                    color: #12264f;
                    font-size: 22px;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 6px 18px rgba(10,20,50,0.12);
                    z-index: 30;
                }

                .galleries-prev { left: 8px; }
                .galleries-next { right: 8px; }

                @media (max-width: 768px) {
                    .galleries-nav { display: none; }
                }

                /* Aulia & Hiro mini-carousel styles */
                .gallery-card.gallery-aulia { padding: 0; }
                .aulia-wrap { position: relative; overflow: hidden; border-radius: 12px; }
                .aulia-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
                .aulia-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }

                /* Ugi & Agel mini-carousel styles (same behavior as Aulia) */
                .gallery-card.gallery-ugi { padding: 0; }
                .ugi-wrap { position: relative; overflow: hidden; border-radius: 12px; }
                        /* Ensure all mini-carousel media share the same visible size/aspect ratio */
                        .aulia-wrap, .ugi-wrap, .gaby-wrap, .romi-wrap {
                            aspect-ratio: 16 / 9;
                            width: 100%;
                            max-width: 100%;
                            overflow: hidden;
                            background: #000;
                        }

                        /* Fallback for older browsers: limit height so videos don't become too tall */
                        @supports not (aspect-ratio: 16/9) {
                            .aulia-wrap, .ugi-wrap, .gaby-wrap, .romi-wrap { height: 220px; }
                            @media (min-width: 768px) { .aulia-wrap, .ugi-wrap, .gaby-wrap, .romi-wrap { height: 260px; } }
                        }

                        .aulia-wrap img, .aulia-wrap video,
                        .ugi-wrap img, .ugi-wrap video,
                        .gaby-wrap img, .gaby-wrap video,
                        .romi-wrap img, .romi-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

                .ugi-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
                .ugi-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }
                .ugi-nav {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    border: none;
                    background: rgba(255,255,255,0.95);
                    color: #12264f;
                    font-size: 20px;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 6px 18px rgba(10,20,50,0.12);
                    z-index: 30;
                }
                .ugi-prev { left: 8px; }
                .ugi-next { right: 8px; }

                @media (max-width: 600px) {
                    .ugi-nav { width: 34px; height: 34px; font-size: 18px; }
                }

                /* Gaby & Rafli mini-carousel styles */
                .gallery-card.gallery-gaby { padding: 0; }
                .gaby-wrap { position: relative; overflow: hidden; border-radius: 12px; }
                .gaby-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
                .gaby-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }
                .gaby-nav {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    border: none;
                    background: rgba(255,255,255,0.95);
                    color: #12264f;
                    font-size: 20px;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 6px 18px rgba(10,20,50,0.12);
                    z-index: 30;
                }
                .gaby-prev { left: 8px; }
                .gaby-next { right: 8px; }

                @media (max-width: 600px) {
                    .gaby-nav { width: 34px; height: 34px; font-size: 18px; }
                }

                /* Pengantin Romi mini-carousel styles */
                .gallery-card.gallery-romi { padding: 0; }
                .romi-wrap { position: relative; overflow: hidden; border-radius: 12px; }
                .romi-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
                .romi-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }
                .romi-nav {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    border: none;
                    background: rgba(255,255,255,0.95);
                    color: #12264f;
                    font-size: 20px;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 6px 18px rgba(10,20,50,0.12);
                    z-index: 30;
                }
                .romi-prev { left: 8px; }
                .romi-next { right: 8px; }

                @media (max-width: 600px) {
                    .romi-nav { width: 34px; height: 34px; font-size: 18px; }
                }
                .aulia-nav {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    border: none;
                    background: rgba(255,255,255,0.95);
                    color: #12264f;
                    font-size: 20px;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 6px 18px rgba(10,20,50,0.12);
                    z-index: 30;
                }
                .aulia-prev { left: 8px; }
                .aulia-next { right: 8px; }

                @media (max-width: 600px) {
                    .aulia-nav { width: 34px; height: 34px; font-size: 18px; }
                }

                .gallery-card {
                    overflow: hidden;
                    border-radius: 10px;
                    box-shadow: 0 6px 18px rgba(10,20,50,0.06);
                    background: #fff;
                }

                .gallery-card img {
                    display: block;
                    width: 100%;
                    height: 220px;
                    object-fit: cover;
                    transition: transform 0.35s ease, filter 0.35s ease;
                }

                .gallery-card:hover img {
                    transform: scale(1.04);
                    filter: brightness(0.98);
                }

                .galleries-cta {
                    margin-top: 8px;
                }

                .galleries .see-more {
                    display: inline-block;
                    background: #12264f;
                    color: #fff;
                    padding: 10px 18px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 600;
                }

                .galleries .see-more:hover {
                    background: #0f1f43;
                }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog h2 {
            font-size: 36px;
            margin-bottom: 50px;
            text-align: center;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            color: #333;
        }

        .blog-image {
            display: block;
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: #E8DDD4; /* fallback color while image loads */
        }

        .blog-content {
            padding: 20px;
        }

        /* Footer */
        footer {
            /* vertical gradient: light sky blue → deep navy */
            background: linear-gradient(180deg, #cfeeff 0%, #84b7dd 30%, #1b3b6a 65%, #071033 100%);
            color: white;
            font-family: 'Cormorant Garamond', serif;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
            text-align: center;
            padding: 8px 0 24px;
        }

        .footer-section {
            width: 100%;
            max-width: 620px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
        }

        .footer-section h3 {
            margin-bottom: 8px;
            color: #ece9e5;
        }

        .footer-logo {
            display: block;
            width: 180px;
            height: auto;
            margin: 0 auto 6px auto;
            object-fit: contain;
        }

        .footer-slogan {
            margin: 0;
            font-weight: 600;
            color: #04003d9d;
            margin-top: 0;
            font-size: 1.5rem;
            letter-spacing: 0.2px;
            margin-bottom: -18px; /* space between slogan and logo */
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 8px;
            justify-content: center;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 50%;
            display: inline-block;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Hamburger (menu toggle) */
        .menu-toggle {
            display: none;
            width: 36px;
            height: 30px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 26px;
            background: #0b0381d5;
            margin: 3px 0;
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }

        /* When toggle active, transform spans into an X */
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Ensure we target the nav menu explicitly */
        .nav-menu {
            list-style: none;
            gap: 30px;
            display: flex;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
                z-index: 2000;
                position: relative;
                cursor: pointer;
            }
            .nav-menu {
                position: absolute;
                top: 100%;
                right: 0;
                left: auto;
                margin-top: 8px;
                background: white;
                flex-direction: column;
                gap: 12px;
                padding: 16px;
                border-radius: 8px;
                box-shadow: 0 8px 24px rgba(0,0,0,0.12);
                display: none;
                width: 80vw;
                max-width: 320px;
                z-index: 1500;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu a {
                color: #333;
                padding: 8px 4px;
                display: block;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .circle-diagram {
                width: 300px;
                height: 300px;
            }
            .portfolio-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

/* Footer social icons (quick-links replacement) */
.footer-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}
.footer-social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    transition: background 0.15s ease, color 0.15s ease;
}
.footer-social-links a i {
    width: 100%;
    text-align: center;
}
.footer-social-links a:hover {
    background: #12264f; /* navy hover */
    color: #fff;
}

@media (max-width: 480px) {
    .footer-social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
