/* Custom Our Services Section ala gambar */
/* Custom Our Services Section ala gambar */
.services {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.services h2 {
    width: 100%;
    font-size: 2.5rem;
    color: #021957;
    font-family: 'Cormorant Garamond', serif;
    font-weight: normal;
    margin-bottom: 36px;
}

/* Container untuk card services - menggunakan Grid Layout */
.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.services-container {
    width: 100%;
}

/* Desktop: pastikan 2 kolom sejajar */
@media (min-width: 769px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .services {
        padding: 40px 15px;
    }
    .services h2 {
        font-size: 2rem;
    }
}

/* Service Card Styling */
.service-card {
    background: #fff;
    border: 1.5px solid #1a357d33;
    border-radius: 6px;
    box-shadow: none;
    padding: 32px 24px 32px 24px;
    width: 100%;
    margin: 0;
    text-align: left;
    position: relative;
    height: 100%; /* Pastikan tinggi card sama */
    display: flex;
    flex-direction: column;
}

.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;
    flex-grow: 1; /* Biarkan paragraf mengambil ruang yang tersisa */
}

.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: auto; /* Push button ke bawah */
}

.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;
}

.service-card.open .service-detail-list {
    display: block;
    position: absolute;
    right: 16px;
    top: 60px;
    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;
    }
}

/* ===== Why Choose Us Section ===== */
/* ===== Why Choose Us Section - MASONRY LAYOUT (ALTERNATIVE) ===== */
.why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f7f4 0%, #faf9f6 100%);
    text-align: center;
}

.why-choose-us-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us-header h2 {
    font-size: 2.5rem;
    color: #1a357d;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    margin-bottom: 12px;
}

#why-choose-heading {
    scroll-margin-top: 100px;
}

.why-choose-us-header .section-subtitle {
    font-size: 1.05rem;
    color: #3a445e;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
}

/* ===== MASONRY GRID - LAYOUT DINAMIS ===== */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card 1: Besar (2 kolom x 2 baris) */
.why-choose-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Card 2: Horizontal (2 kolom x 2 baris) */
.why-choose-card:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Card 3: Kecil (1 kolom x 2 baris) */
.why-choose-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}

/* Card 4: Kecil (1 kolom x 2 baris) */
.why-choose-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
} 

/* ===== CARD STYLING ===== */
.why-choose-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 53, 125, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(26, 53, 125, 0.15);
}

/* ===== IMAGE WRAPPER ===== */
.why-choose-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    background: #f5f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.why-choose-card:hover .why-choose-image {
    transform: scale(1.08);
}

/* ===== OVERLAY ICON ===== */
.why-choose-overlay {
    display: none !important;
}

.why-choose-card:hover .why-choose-overlay {
    opacity: 1;
}

.why-choose-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
}

/* Card 1 (besar) - icon lebih besar */
.why-choose-card:nth-child(1) .why-choose-overlay i {
    font-size: 3.5rem;
}

/* ===== MASONRY GRID - LAYOUT DINAMIS ===== */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Semua card: span 1 kolom, row 1 */
.why-choose-card:nth-child(1),
.why-choose-card:nth-child(2),
.why-choose-card:nth-child(3),
.why-choose-card:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
}

/* ===== CARD STYLING ===== */
.why-choose-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 53, 125, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(26, 53, 125, 0.15);
}

/* ===== IMAGE WRAPPER ===== */
.why-choose-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.why-choose-card:hover .why-choose-image {
    transform: scale(1.08);
}

/* ===== OVERLAY ICON ===== */
.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 53, 125, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover .why-choose-overlay {
    opacity: 1;
}

.why-choose-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
}

/* ===== TEXT CONTENT ===== */
.why-choose-card h3 {
    font-size: 1.2rem;
    color: #1a357d;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    margin: 16px 16px 8px;
    padding: 0;
}

.why-choose-card p {
    color: #3a445e;
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    margin: 0 16px 16px;
    padding: 0;
    text-align: left;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Tablet - tetap 2 kolom */
@media (max-width: 1024px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-choose-card {
        min-height: 320px;
    }
}

/* Tablet - tetap 2 kolom */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 15px;
    }

    .why-choose-us-header h2 {
        font-size: 2rem;
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-choose-card {
        min-height: 300px;
    }

    .why-choose-card h3 {
        font-size: 1rem;
        margin: 12px 12px 6px;
    }

    .why-choose-card p {
        font-size: 0.85rem;
        margin: 0 12px 12px;
    }
}

/* Mobile - 1 kolom */
@media (max-width: 600px) {
    .why-choose-us {
        padding: 50px 12px;
    }

    .why-choose-us-header h2 {
        font-size: 1.8rem;
    }

    .why-choose-us-header .section-subtitle {
        font-size: 0.95rem;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .why-choose-card {
        min-height: auto;
    }

    .why-choose-card h3 {
        font-size: 1rem;
        margin: 12px 12px 6px;
    }

    .why-choose-card p {
        font-size: 0.85rem;
        margin: 0 12px 12px;
    }
}
/* Hero Container */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
        }

        /* Hero Container */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #f0f0f0; /* Fallback */
}

/* Hero Caption - Bottom Left Text */
.hero-caption {
    position: absolute;
    bottom: 70px;
    left: 40px;
    z-index: 8;
    max-width: 350px;
}

.hero-caption-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    text-align: left;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-caption {
        bottom: 35px;
        left: 20px;
        max-width: 280px;
    }
    
    .hero-caption-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-caption {
        bottom: 35px;
        left: 15px;
        max-width: 220px;
    }
    
    .hero-caption-text {
        font-size: 1rem;
    }
}

/* Hero Swiper Background */
.hero-swiper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.hero-swiper .swiper-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.hero-swiper .swiper-slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* Overlay gradient */
.hero-swiper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 25, 87, 0.6), rgba(139, 139, 154, 0.5));
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative !important;
    z-index: 5 !important;
    padding: 20px;
}



.running-text-wrapper {
    overflow: hidden;
    width: 100%;
    background: transparent;
}

.running-text {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    gap: 80px;
}

.running-text span {
    color: #ffffff;
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    flex-shrink: 0;
}

#typing-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.6;
    min-height: 8.4rem;
}

.typing-text.typing {
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { 
        border-right-color: transparent; 
    }
    50% { 
        border-right-color: #ffffff; 
    }
}

/* Responsive */

/* Tablet */
@media (min-width: 768px) {
    #typing-text {
        font-size: 3.8rem;
        min-height: 11.4rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    #typing-text {
        font-size: 4.5rem;
        min-height: 13.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    #typing-text {
        font-size: 5.5rem;
        min-height: 16.5rem;
    }
}

/* Pagination Bullets */
.hero-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1) !important;
    width: 24px !important;
    border-radius: 5px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .hero-logo {
        width: 200px;
        transform: translateY(-40px);
    }
    
    .hero-content p {
        font-size: 18px;
        transform: translateY(-70px);
    }
    
    .hero-pagination {
        bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content .hero-logo {
        width: 180px;
        transform: translateY(-30px);
    }
    
    .hero-content p {
        font-size: 16px;
        transform: translateY(-60px);
    }
}



        * {
            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);
        }

/* Hero Swiper Slider */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pagination {
    z-index: 10;
    bottom: 20px;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* 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;
    }
}

       

        /* 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(rgb(255, 255, 255), rgb(255, 255, 255)), 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: 1344px 50px;
                    /* ensure container is tall enough to show full video frame at the fixed height */
                            min-height: 482px;
            color: white;
            text-align: center;
        }

       /* Team Section - New Layout */
.team {
    background: linear-gradient(135deg, #1a357d 0%, #2a4fa8 50%, #f5f3f0 100%);
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-content {
    padding: 40px;
}

.team h2 {
    font-size: 2.8rem;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.team-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 32px;
    font-family: 'Cormorant Garamond', serif;
}

.team-cta-btn {
    display: inline-block;
    background: white;
    color: #1a357d;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.team-cta-btn:hover {
    background: #f5f3f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Team Images Layout */
.team-images {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.team-image-large {
    grid-row: 1 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.team-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-images-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-image-small {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team h2 {
        font-size: 2.2rem;
    }
    
    .team-images {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-image-large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 50px 20px;
        min-height: auto;
    }
    
    .team-content {
        padding: 20px 0;
    }
    
    .team h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .team-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    /* Mobile layout: gambar besar di atas, 2 kecil di bawah */
    .team-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .team-image-large {
        grid-row: 1;
        grid-column: 1;
        height: 300px;
    }
    
    .team-images-right {
        grid-row: 2;
        grid-column: 1;
        flex-direction: row;
        gap: 16px;
    }
    
    .team-image-small {
        height: 200px;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .team h2 {
        font-size: 1.5rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
}
        /* Custom Our Services Section ala gambar */
.services {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.services h2 {
    width: 100%;
    font-size: 2.5rem;
    color: #021957;
    font-family: 'Cormorant Garamond', serif;
    font-weight: normal;
    margin-bottom: 36px;
}

/* Container untuk card services - menggunakan Grid Layout */
.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.services-container {
    width: 100%;
}

/* Desktop: pastikan 2 kolom sejajar */
@media (min-width: 769px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .services {
        padding: 40px 15px;
    }
    .services h2 {
        font-size: 2rem;
    }
}

/* Service Card Styling */
.service-card {
    background: #fff;
    border: 1.5px solid #1a357d33;
    border-radius: 6px;
    box-shadow: none;
    padding: 32px 24px 32px 24px;
    width: 100%;
    margin: 0;
    text-align: left;
    position: relative;
    height: 100%; /* Pastikan tinggi card sama */
    display: flex;
    flex-direction: column;
}

.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;
    flex-grow: 1; /* Biarkan paragraf mengambil ruang yang tersisa */
}

.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: auto; /* Push button ke bawah */
}

.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;
}

/* Tampilan popup sama untuk semua ukuran layar - di bawah button */
.service-card.open .service-detail-list {
    display: block;
    position: static;
    width: 100%;
    max-height: none;
    background: #fff;
    border: 1px solid #e6e6ef;
    border-radius: 6px;
    padding: 18px 16px;
    box-shadow: 0 4px 12px rgba(18, 30, 70, 0.08);
    margin-top: 12px;
}

.service-detail-list li {
    margin: 8px 0;
    color: #3a445e;
    font-size: 0.98rem;
    line-height: 1.5;
    list-style: disc;
    margin-left: 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;
        }

        /* ==========================================
   FAQ - Desktop vs Mobile
   ========================================== */

/* Desktop: Show accordion, hide swiper */
.faq-desktop {
    display: block;
}

.faq-mobile {
    display: none;
}

/* Mobile: Hide accordion, show swiper */
@media (max-width: 768px) {
    .faq-desktop {
        display: none;
    }
    
    .faq-mobile {
        display: block;
    }
    
    /* Swiper styling untuk mobile */
    .faq-swiper {
        padding-bottom: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .faq-card {
        background: white;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 260px;
    }
    
    .faq-card .faq-question {
        font-weight: bold;
        color: #020349e5;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .faq-card .faq-answer {
        color: #556678;
        font-size: 0.9rem;
        line-height: 1.6;
        flex-grow: 1;
    }
    
    /* Pagination dots styling */
    .faq-pagination {
        position: static;
        margin-top: 16px;
    }
    
    .faq-pagination .swiper-pagination-bullet {
        background: #d0d0d0;
        opacity: 0.8;
        width: 10px;
        height: 10px;
    }
    
    .faq-pagination .swiper-pagination-bullet-active {
        background: #12264f;
        opacity: 1;
    }
}

        /* 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;
        }

        /* =============== Testimonial Ucapan Section =============== */
.testimonial-ucapan {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.testimonial-ucapan h2 {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: #1a357d;
    margin-bottom: 12px;
    font-weight: 700;
}

.testimonial-ucapan .section-subtitle {
    font-size: 1.05rem;
    color: #556678;
    margin-bottom: 50px;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    line-height: 1.6;
}

.ucapan-swiper {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.ucapan-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(26, 53, 125, 0.08);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(26, 53, 125, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative quote mark */
.ucapan-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(26, 53, 125, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.ucapan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 53, 125, 0.15);
    border-color: rgba(26, 53, 125, 0.2);
}

.ucapan-text {
    font-size: 1.1rem;
    color: #3a445e;
    line-height: 1.9;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    flex-grow: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ucapan-name {
    font-size: 1.3rem;
    color: #1a357d;
    font-weight: 700;
    margin: 20px 0 8px 0;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

.ucapan-date {
    font-size: 0.95rem;
    color: #8b9cb3;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

/* Pagination Styling */
.ucapan-pagination {
    position: relative;
    margin-top: 30px;
}

.ucapan-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #1a357d;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.ucapan-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #1a357d;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-ucapan {
        padding: 60px 20px;
    }

    .testimonial-ucapan h2 {
        font-size: 2rem;
    }

    .testimonial-ucapan .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .ucapan-swiper {
        padding-bottom: 40px;
    }

    .ucapan-card {
        padding: 35px 25px;
        min-height: 240px;
    }

    .ucapan-card::before {
        font-size: 4rem;
        top: 15px;
        left: 20px;
    }

    .ucapan-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .ucapan-name {
        font-size: 1.15rem;
        margin: 15px 0 6px 0;
    }

    .ucapan-date {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-ucapan {
        padding: 50px 15px;
    }

    .testimonial-ucapan h2 {
        font-size: 1.75rem;
    }

    .testimonial-ucapan .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .ucapan-swiper {
        padding-bottom: 35px;
    }

    .ucapan-card {
        padding: 30px 20px;
        min-height: 220px;
        border-radius: 12px;
    }

    .ucapan-card::before {
        font-size: 3.5rem;
        top: 12px;
        left: 15px;
    }

    .ucapan-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .ucapan-name {
        font-size: 1.05rem;
        margin: 12px 0 5px 0;
    }

    .ucapan-date {
        font-size: 0.85rem;
    }

    .ucapan-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .ucapan-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}

       /* ==========================================
   PORTFOLIO SWIPER
   ========================================== */

.portfolio {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.portfolio h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #020349e5;
    font-family: 'Cormorant Garamond', serif;
}

.portfolio-swiper {
    padding-bottom: 50px;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.portfolio-image {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #E8DDD4;
}

.portfolio-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    color: #020349e5;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}

.portfolio-info p {
    font-size: 0.95rem;
    color: #556678;
    margin: 0;
    line-height: 1.5;
}

.portfolio-info .see-more {
    display: inline-block;
    background: #12264f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.portfolio-info .see-more:hover {
    background: #0f1f43;
}

/* Portfolio Pagination */
.portfolio-swiper .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 0px;
    padding-top: 20px;
}

.portfolio-pagination {
    position: relative !important;
    margin-top: 40px;
}

.portfolio-pagination .swiper-pagination-bullet {
    background: #d0d0d0;
    opacity: 0.8;
    width: 12px;
    height: 12px;
}

.portfolio-pagination .swiper-pagination-bullet-active {
    background: #12264f;
    opacity: 1;
}

/* Desktop: Multiple items per slide */
@media (min-width: 1024px) {
    .portfolio-swiper {
        padding-bottom: 50px;
    }
}


/* Tablet */
@media (max-width: 768px) {
    .portfolio h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-info {
        padding: 18px 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .portfolio {
        padding: 60px 15px;
    }
    
    .portfolio h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-info {
        padding: 16px 14px;
        gap: 10px;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-info p {
        font-size: 0.85rem;
    }
    
    .portfolio-info .see-more {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

        /* 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(300px, 1fr));
                gap: 24px;
                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, .delila-wrap, .kevinyemima-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, .delila-wrap, .kevinyemima-wrap { height: 220px; }
    @media (min-width: 768px) { .aulia-wrap, .ugi-wrap, .gaby-wrap, .romi-wrap, .delila-wrap, .kevinyemima-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,
.delila-wrap img, .delila-wrap video,
.kevinyemima-wrap img, .kevinyemima-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; }
                }
                /* Delila & Adhi mini-carousel styles */
.gallery-card.gallery-delila { padding: 0; }
.delila-wrap { position: relative; overflow: hidden; border-radius: 12px; }
.delila-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.delila-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }
.delila-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;
}
.delila-prev { left: 8px; }
.delila-next { right: 8px; }

@media (max-width: 600px) {
    .delila-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; }
                }

                /* Kevin & Yemima mini-carousel styles */
.gallery-card.gallery-kevinyemima { padding: 0; }
.kevinyemima-wrap { position: relative; overflow: hidden; border-radius: 12px; }
.kevinyemima-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kevinyemima-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }
.kevinyemima-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;
}
.kevinyemima-prev { left: 8px; }
.kevinyemima-next { right: 8px; }

@media (max-width: 600px) {
    .kevinyemima-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);
                }

                /* Desktop: hide "See More Works" button */
@media (min-width: 769px) {
    .galleries-cta {
        display: none;
    }
    
    /* Show gallery-delila and gallery-kevinyemima di desktop */
    .gallery-card.gallery-delila,
    .gallery-card.gallery-kevinyemima {
        display: block;
    }
    
    #delilaGallery {
        display: block;
    }
    
    #kevinyemimaGallery {
        display: block;
    }
}

/* Mobile: show "See More Works" button */
@media (max-width: 768px) {
    .galleries-cta {
        margin-top: 8px;
        display: block;
    }
    
    /* Hide gallery-delila and gallery-kevinyemima di mobile */
    .gallery-card.gallery-delila,
    .gallery-card.gallery-kevinyemima {
        display: none;
    }
    
    #delilaGallery {
        display: none;
    }
    
    #kevinyemimaGallery {
        display: none;
    }
}

                .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;
}

/* Make .couple background video specific size: width 1344px × height 482px (landscape) */
.couple {
    position: relative;
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
    padding: 40px 16px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FRAME VIDEO - Desktop */
.couple-frame {
    width: 100%;
    aspect-ratio: 1344 / 482;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* VIDEO ELEMENT - PERBAIKAN UTAMA */
.couple-frame .couple-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* CHANGED: dari scale-down ke cover agar tidak terpotong */
    object-position: center;
}

/* TEXT OVERLAY */
.couple-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.couple-overlay-inner {
    color: white;
    text-align: center;
    max-width: 80%;
    padding: 8px 12px;
}

.couple-overlay-inner h2 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 2.2rem; 
    margin: 0 0 6px; 
    font-weight: 700; 
}

.couple-overlay-inner p { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1.2rem; 
    margin: 0; 
    opacity: 0.95; 
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet - 768px */
@media (max-width: 768px) {
    .couple {
        padding: 35px 20px;
    }
    
    .couple-frame {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    
    .couple-overlay-inner h2 { 
        font-size: 1.8rem; 
    }
    
    .couple-overlay-inner p { 
        font-size: 1.1rem; 
    }
}

/* Mobile - 520px (FIXED: Video tidak terpotong) */
@media (max-width: 520px) {
    .couple { 
        padding: 30px 15px; 
    }
    
    /* PERBAIKAN: Gunakan aspect ratio 16:9 standar untuk mobile */
    .couple-frame {
        width: 100%;
        aspect-ratio: 16 / 9; /* Tidak lagi menggunakan 434/247 */
        border-radius: 10px;
    }

    /* PERBAIKAN: Gunakan object-fit cover agar video penuh */
    .couple-frame .couple-bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* CHANGED: dari contain ke cover */
        object-position: center;
    }
    
    .couple-overlay-inner h2 { 
        font-size: 1.4rem; 
        line-height: 1.3;
    }
    
    .couple-overlay-inner p { 
        font-size: 1rem; 
    }
}

/* Extra Small Mobile - 380px */
@media (max-width: 380px) {
    .couple {
        padding: 25px 12px;
    }
    
    .couple-frame {
        border-radius: 8px;
    }
    
    .couple-overlay-inner h2 { 
        font-size: 1.2rem; 
    }
    
    .couple-overlay-inner p { 
        font-size: 0.9rem; 
    }
}

/* Desktop / large-screen tweaks: make About heading and gallery photos larger so they don't feel tiny on big screens */
@media (min-width: 1024px) {
    .about {
        padding: 100px 20px;
        max-width: 1400px;
    }

    /* make the main about headline more prominent on desktop */
    .about h2 {
        font-size: 56px; /* bigger title for desktop */
        line-height: 1.05;
        margin-bottom: 36px;
    }

    .about p {
        font-size: 18px;
        line-height: 1.6;
        max-width: 960px;
    }

    /* enlarge gallery tiles on wider screens */
    .gallery {
        gap: 28px;
        justify-content: center;
    }

    .gallery-item {
        width: 220px;
        height: 220px;
        border-radius: 12px;
    }

    .gallery-item:hover {
        transform: rotate(0deg) scale(1.08);
    }
}

/* Mobile-specific frame size: prefer an explicit 434 x 247 frame on small devices
   but don't allow overflow — scale down if viewport is narrower than 434px. */
@media (max-width: 520px) {
    .couple { 
        padding: 30px 15px; 
    }
    
    .couple-frame {
        width: 100%;
        aspect-ratio: 16 / 9;  /* ← Gunakan ratio standar video */
        border-radius: 10px;
    }

    .couple-frame .couple-bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;  /* ← GUNAKAN cover AGAR PENUH */
        object-position: center;
    }
}
/* Extra responsive: for narrow devices ensure container doesn't force huge height */
@media (max-width: 520px) {
    .couple { min-height: auto; padding: 40px 18px; }
}
.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;
    }
}

/* Typing Animation */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 49% {
        border-right-color: rgba(255, 255, 255, 0.75);
    }
    50%, 100% {
        border-right-color: transparent;
    }
}

#typing-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.6;
    min-height: 5.4rem;
}

/* Tablet */
@media (min-width: 768px) {
    #typing-text {
        font-size: 2.5rem;
        min-height: 7.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    #typing-text {
        font-size: 3rem;
        min-height: 9rem;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    #typing-text {
        font-size: 3.5rem;
        min-height: 10.5rem;
    }
}

/* Delila & Kevin-Yemima Gallery Modal - Initial state */
#delilaGallery,
#kevinyemimaGallery {
    display: none;
}

/* Show saat class "visible" ditambahkan (untuk mobile modal) */
#delilaGallery.visible,
#kevinyemimaGallery.visible {
    display: block;
    animation: slideIn 0.4s ease;
}

/* Desktop: Show both galleries */
@media (min-width: 769px) {
    #delilaGallery,
    #kevinyemimaGallery {
        display: block !important;
    }
    
    #delilaGallery.visible,
    #kevinyemimaGallery.visible {
        animation: none;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}