/*--------------------------------------
Général
--------------------------------------*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;600&display=swap');

/* Primary Color System */
:root {
    /* Light Theme Colors */
    --primary-10: #66BBAA;
    --primary-20: #4DAB98;
    --primary-30: #339C86;
    --primary-40: #1A8C74;
    --primary-base: #007B5E;
    --primary-70: #00684E;
    --primary-80: #00553E;
    --primary-90: #00422E;
    --primary-100: #002F1E;
}

/* Secondary Color System */
:root {
    --secondary-10: #EFFCFF;
    --secondary-20: #95BDA7;
    --secondary-30: #789B89;
    --secondary-40: #5B796B;
    --secondary-base: #3E5F4D;
    --secondary-60: #364F45;
    --secondary-70: #2E413C;
    --secondary-80: #263333;
    --secondary-90: #FFFFFF;
}

/* Dark Theme Colors */
[data-theme="dark"] {
    /* Primary Colors - Dark Theme */
    --primary-10: #51A2AE;
    --primary-20: #73B4BE;
    --primary-30: #96C7CF;
    --primary-40: #96C7CF;
    --primary-base: #2F8F9D;
    --primary-70: #297A86;
    --primary-80: #236470;
    --primary-90: #1C4E59;
    --primary-100: #1C4E59;
    
    /* Secondary Colors - Dark Theme */
    --secondary-10: #FFFFFF;
    --secondary-20: #95BDA7;
    --secondary-30: #789B89;
    --secondary-40: #5B796B;
    --secondary-base: #3E5F4D;
    --secondary-60: #364F45;
    --secondary-70: #2E413C;
    --secondary-80: #263333;
    --secondary-90: #FFFFFF;
}

/* Typography */
h1, .heading-h1 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; line-height: 60px; }
h2, .heading-h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 600; line-height: 48px; }
h3, .heading-h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; line-height: 38px; }
.body-large, p.large { font-family: 'Poppins', sans-serif; font-size: 18px; line-height: 30px; }
.body-small, p.small { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 26px; }
.caption { font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 20px; }
body, p { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 26px; }

/* Responsive Typography */
@media (max-width: 767px) {
    h1, .heading-h1 { font-size: 32px; line-height: 40px; }
    h2, .heading-h2 { font-size: 26px; line-height: 34px; }
    h3, .heading-h3 { font-size: 22px; line-height: 30px; }
    .body-large, p.large { font-size: 16px; line-height: 26px; }
    .body-small, p.small { font-size: 14px; line-height: 22px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    h1, .heading-h1 { font-size: 40px; line-height: 52px; }
    h2, .heading-h2 { font-size: 32px; line-height: 44px; }
    h3, .heading-h3 { font-size: 24px; line-height: 34px; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-base);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn--lg { padding: 16px 20px; }
.btn--sm { padding: 10px 16px; border-radius: 6px; }

.btn:hover { background-color: var(--primary-80); }
.btn:active { background-color: var(--primary-90); }

.btn--secondary {
    background-color: transparent;
    color: var(--primary-base);
    border: 2px solid var(--primary-base);
}

.btn--secondary:hover { background-color: var(--primary-10); }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;

   
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.brand__logo { height: 48px; }

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: #0F172A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover { color: var(--primary-100); }
.nav__link.active { color: var(--primary-base); font-weight: 600; }

/* Mobile */
@media (max-width: 833px) {
    .site-header .container { padding: 16px 0; gap: 16px; }
    .brand__logo { height: 40px; }
    .nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #FFFFFF;
        border-top: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px 24px;
        gap: 0;
    }
    .nav__list.active { display: flex; }
    .nav__list li { border-bottom: 1px solid rgba(15, 23, 42, 0.05); }
    .nav__list li:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 16px 0; }
    .site-header .btn { display: none; }
}

/* Utilities */
.text-primary { color: var(--primary-base); }

/* Hero */
.hero { padding: 48px 0 24px; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 32px;
    background: var(--secondary-10);
    color: var(--primary-100);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}
.hero__title { margin: 0 0 20px; }
.hero__desc { margin: 0 0 24px; color: #334155; max-width: 60ch; }
.hero__actions { display: flex; gap: 16px; align-items: center; }

@media (min-width: 1000px) {
    .hero { padding: 64px 0; }
    .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}

/* Hero Image */
.hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 9;
}

/* Collaborators */
.collaborators { padding: 0px 0 100px; }

.collab-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.collab-list {
    display: flex;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite;
}

/* Duplicate logos for seamless loop */
.collab-list::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
}

.collab-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-logo {
    display: block;
    max-width: 160px;
    width: 100%;
    height: auto;
    filter: saturate(0.9) contrast(1);
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.collab-item:hover .collab-logo { opacity: 1; }

/* Marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for better UX */
.collab-marquee-wrapper:hover .collab-list {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (min-width: 700px) {
    .collab-list { gap: 60px; }
}

@media (min-width: 1000px) {
    .collab-list { gap: 80px; }
}


/* Collaborators */
/*.collab-marquee-wrapper { overflow: hidden; }
.collab-list {
    display: flex;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.collab-item { flex-shrink: 0; }
.collab-logo {
    max-width: 160px;
    height: auto;
    opacity: 1;
    transition: opacity 0.1s ease;
    filter: none;
}

/* Remove dots/separators from collaborator logos */
.collab-logo::before,
.collab-logo::after {
    display: none !important;
}

.collab-logo * {
    display: none !important;
}

.collab-logo {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.collab-item:hover .collab-logo { opacity: 1; }
.collab-marquee-wrapper:hover .collab-list { animation-play-state: paused; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (min-width: 700px) { .collab-list { gap: 60px; } }
@media (min-width: 1000px) { .collab-list { gap: 80px; } }
*/

/* Packages */
.packages { padding: 80px 0 100px; }
.packages__header { text-align: center; margin-bottom: 28px; }
.packages__subtitle { color: #475569; margin-top: 8px; }
.package-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.package-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.package-card__img { width: 100%; height: 220px; object-fit: cover; }
.package-card__body { padding: 16px; }
.package-card__tag { color: var(--primary-base); margin-bottom: 8px; font-weight: 600; }
.package-card__title { margin: 0 0 8px; font-size: 28px; line-height: 38px; }
.package-card__price { color: #0F172A; margin-bottom: 4px; }
.package-card__price .unit { color: #64748B; font-weight: 400; }
.package-card__meta { color: #64748B; margin-bottom: 12px; }
.package-card__actions { display: flex; gap: 12px; }
.package-card__actions .btn { flex: 1; }

@media (min-width: 800px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .package-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 360px) { .package-card__actions { flex-direction: column; } }

/* Services */
.services { padding: 44px 0; background: #ECFEFF; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.services-media-card__img { width: 100%; border-radius: 12px; object-fit: cover; }
.services-media-card__badge { position: absolute; left: 16px; bottom: 16px; background: #FFFFFF; border-radius: 12px; padding: 10px 14px; }
.services-media-card__badge img { height: 36px; width: auto; }
.services-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: 1fr; gap: 12px 24px; }
.services-item { display: flex; align-items: center; gap: 10px; color: #0F172A; }
.services-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary-10);
    color: var(--primary-base);
    font-weight: 700;
}

@media (min-width: 900px) { .services-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: 0.9fr 1.1fr; gap: 48px; } }

/* Testimonials (Original) */
.apa-kata-mereka {
    align-self: stretch;
    position: relative;
    letter-spacing: 0.03em;
    line-height: 60px;
    font-weight: 600;
}
.kami-memiliki-lebih {
    align-self: stretch;
    position: relative;
    font-size: 24px;
    line-height: 36px;
    font-family: Poppins;
    color: #4b5563;
}
.title {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}
.a-muslim-man-preparing-to-go-t {
    width: 100px;
    position: relative;
    border-radius: 10px;
    max-height: 100%;
    object-fit: cover;
}
.star-icon {
    width: 12px;
    position: relative;
    height: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.tag {
    border-radius: 20px;
    background-color: #effcff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    gap: 6px;
}
.rating-and-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.umroh {
    position: relative;
    line-height: 20px;
}
.frame-hero {
    border-radius: 100px;
    background-color: #effcff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}
.humaira-khaira {
    align-self: stretch;
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #4a4a4a;
}
.name-and-tag {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}
.i-am-very {
    align-self: stretch;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #454545;
}
.text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 16px;
    color: #002f1e;
}
.testimonial {
    display: flex;
    gap: 16px;
}

.card-testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 464px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

.div, .div4 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    gap: 10px;
    text-align: left;
    font-size: 14px;
    color: #007b5e;
    font-family: Poppins;
}
.section-5 {
    width: 100%;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 100px;
    box-sizing: border-box;
    gap: 60px;
    text-align: center;
    font-size: 48px;
    color: #111827;
    font-family: 'Playfair Display';
}

@media (max-width: 767px) {
    .section-5 { padding: 60px 16px; font-size: 36px; }
    .card-testimonial { min-width: 100%; }
}


/* Hide old overlay badge if present */
.testi-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    background: var(--secondary-10);
    color: var(--primary-base);
    font-weight: 500;
    font-size: 18px;
    border-radius: 999px;
    position: absolute;
    top: 16px;
    left: 16px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
    letter-spacing: 0.01em;
}

.testi-card__body {
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}

.testi-chip {
    display: none;
}

.testi-name {
    margin: 0 0 8px;
    font-family: 'Poppins', serif;
    font-size: 22px;
    line-height: 1.2;
    color: #0F172A;
    font-weight: 700;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
}

.testi-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--secondary-10);
    border-radius: 999px;
    color: #0F172A;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}

.testi-rating .star {
    color: #F59E0B;
    font-size: 18px;
}

.testi-text {
    color: #334155;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}*/

/* Gallery */
.gallery { padding: 100px 100px 100px; background: var(--secondary-10); }
@media (max-width: 767px) {
    .gallery { padding: 60px 16px 60px; }
    .gallery-img { height: auto; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .gallery { padding: 80px 40px 80px; }
}
.gallery__header { text-align: center; margin-bottom: 28px; }


/* Gallery */
.section-6 {
    background-color: var(--secondary-10);
    padding: 80px 100px;
    text-align: center;
}

.content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    max-width: 20000px;
    margin: 0 auto;
}

.image1-icon {
    grid-row: 1/3;
    border-radius: 32px;
    width: 100%;
    height: 100%;
    position: top;
    object-fit: cover;
}

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

.image2-icon, .image3-icon, .image4-icon, .image5-icon {
    border-radius: 32px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure images never overflow container */
img { max-width: 100%; height: auto; }

/* Footer */
.footer {
    background-color: var(--primary-10);
    color: #0F172A;
    padding: 60px 0 20px;
}

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

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 80px;
    height: auto;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px;
}

.footer__company-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 16px 0;
}

.footer__description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #0F172A;
    margin: 0;
}

.footer__heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 20px 0;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: #0F172A;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--primary-base);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer__contact-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.footer__contact-text {
    font-size: 16px;
    line-height: 24px;
    color: #0F172A;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 123, 94, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__copyright p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #0F172A;
    margin: 0;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-10);
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--primary-20);
}

.footer__social-icon {
    font-size: 18px;
}








