/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#6366f1;
    --primary-dark:#4f46e5;
    --accent:#06b6d4;
    --accent-dark:#0891b2;
    --dark:#0a0f1e;
    --soft:#0d1425;
    --card:#111827;
    --card-hover:#141e30;
    --text:#e2e8f0;
    --muted:#64748b;
    --border:rgba(99,102,241,.12);
    --border-glow:rgba(99,102,241,.3);
    --shadow:0 12px 40px rgba(0,0,0,.5);
    --glow:0 0 40px rgba(99,102,241,.15);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99,102,241,.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 110%, rgba(6,182,212,.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(139,92,246,.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1e 0%, #0d1425 50%, #0a0f1e 100%);
    background-attachment:fixed;
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    padding:14px 0;
    background:rgba(10,15,30,.85);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(99,102,241,.1);
    box-shadow:0 4px 24px rgba(0,0,0,.4);
    position:relative;
    z-index:9999;
}

.navbar-brand{
    color:#fff !important;
    font-size:22px;
    font-weight:800;
    letter-spacing:-.3px;
}

.logo{
    height:42px;
}

.nav-link{
    position:relative;
    margin-left:18px;
    color:rgba(226,232,240,.8) !important;
    font-weight:500;
    font-size:14px;
    transition:.3s ease;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    border-radius:20px;
    background:linear-gradient(90deg, var(--primary), var(--accent));
    transition:.3s ease;
}

.nav-link:hover{
    color:#fff !important;
}

.nav-link:hover::after{
    width:100%;
}

/* Modal */
.modal{
    z-index:99999 !important;
}

.modal-dialog{
    margin-top:80px !important;
}

.modal-content{
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--border);
    background:var(--card);
}

.modal-header{
    background:var(--card);
    border-bottom:1px solid var(--border);
    padding:20px 25px;
}

.modal-body{
    padding:25px;
    background:var(--card);
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #25D366;
    color: #fff;

    text-decoration: none;
    border-radius: 50%;

    font-size: 34px;
    line-height: 1;

    z-index: 9999;

    box-shadow: 0 10px 25px rgba(37,211,102,.35);
    transition: all .3s ease;
}

.whatsapp-float:hover{
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37,211,102,.45);
}

.whatsapp-float i{
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float{
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    color:#fff;
}

/* Background pakai pseudo-element agar lebih fleksibel */
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(10,15,30,.8), rgba(10,15,30,.9)),
        url("/galeri/gambar.jpg");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    z-index:0;
}

.hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(99,102,241,.2), transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(6,182,212,.12), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(139,92,246,.1), transparent 35%);
    pointer-events:none;
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:18px;
    line-height:1.2;
    background:linear-gradient(135deg, #fff 0%, rgba(99,102,241,.9) 50%, #06b6d4 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero p{
    max-width:720px;
    margin:auto;
    font-size:18px;
    color:rgba(226,232,240,.75);
}

/* Animasi glow — pisah jadi element tersendiri di HTML */
.hero-glow{
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(99,102,241,.08), transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    animation:pulse-glow 6s ease-in-out infinite;
    pointer-events:none;
    z-index:1;
}

@keyframes pulse-glow{
    0%,100%{ opacity:.5; transform:translate(-50%,-50%) scale(1); }
    50%{ opacity:1; transform:translate(-50%,-50%) scale(1.15); }
}

/* ---- RESPONSIVE ---- */
@media(max-width:768px){
    .hero{
        min-height:100svh; /* pakai svh agar pas di HP termasuk area browser bar */
    }

    .hero::before{
        background-position:center center;
        background-size:cover;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:15px;
        padding:0 10px;
    }

    .hero-glow{
        width:300px;
        height:300px;
    }
}

@media(max-width:400px){
    .hero h1{
        font-size:28px;
    }
}

/* =========================
   BUTTON
========================= */

.btn-custom,
.btn-booking,
.btn-submit-testimoni,
.btn-login-now{
    border:none;
    color:#fff;
    font-weight:700;
    transition:.35s ease;
    background:linear-gradient(135deg, var(--primary), var(--primary-dark));
    position:relative;
    overflow:hidden;
}

.btn-custom,
.btn-booking,
.btn-submit-testimoni,
.btn-login-now{
    z-index:0;
}

.btn-custom::before,
.btn-booking::before,
.btn-submit-testimoni::before,
.btn-login-now::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, var(--accent), var(--primary));
    opacity:0;
    transition:.35s ease;
    z-index:-1;
}

.btn-custom:hover::before,
.btn-booking:hover::before,
.btn-submit-testimoni:hover::before,
.btn-login-now:hover::before{
    opacity:1;
}

.btn-custom{
    padding:14px 34px;
    border-radius:60px;
    box-shadow:0 10px 30px rgba(99,102,241,.35);
}

.btn-custom:hover,
.btn-booking:hover,
.btn-submit-testimoni:hover,
.btn-login-now:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(99,102,241,.45);
    color:#fff;
}

/* =========================
   SECTION
========================= */

.section,
.cara-section,
.gallery-section,
.testimonial-section,
.map-section,
#harga{
    position:relative;
    overflow:hidden;
    padding:100px 0;
}

.section::before,
.cara-section::before,
.gallery-section::before,
.testimonial-section::before,
.map-section::before,
#harga::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(ellipse 60% 40% at 10% 10%, rgba(99,102,241,.07), transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(6,182,212,.05), transparent 50%);
}

/* =========================
   TITLE
========================= */

.section-title,
.gallery-title,
.cara-title,
.testimonial-title,
.map-title{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:16px;
    text-align:center;
    letter-spacing:-.5px;
}

.section-title::after{
    content:'';
    display:block;
    width:70px;
    height:3px;
    margin:14px auto 0;
    border-radius:20px;
    background:linear-gradient(135deg, var(--primary), var(--accent));
}

.section-subtitle,
.gallery-subtitle,
.cara-subtitle,
.testimonial-subtitle,
.map-subtitle{
    max-width:700px;
    margin:auto;
    text-align:center;
    color:rgba(226,232,240,.55);
    font-size:15px;
    line-height:1.9;
}

.cara-badge,
.gallery-badge,
.testimonial-badge,
.map-badge,
.badge-premium{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(99,102,241,.1);
    border:1px solid rgba(99,102,241,.2);
    color:#818cf8;
    font-size:13px;
    font-weight:600;
    backdrop-filter:blur(10px);
    letter-spacing:.4px;
}

/* =========================
   CARD
========================= */

.card,
.cara-card,
.gallery-card,
.paket-card,
.testimonial-card,
.map-card,
.testimonial-form-card{
    background:rgba(17,24,39,.85);
    border:1px solid var(--border);
    border-radius:24px;
    box-shadow:var(--shadow);
    transition:.35s ease;
    backdrop-filter:blur(10px);
}

.card:hover,
.cara-card:hover,
.gallery-card:hover,
.paket-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:var(--border-glow);
    box-shadow:0 20px 50px rgba(99,102,241,.15), var(--shadow);
}

/* =========================
   ICON
========================= */

.icon-box,
.cara-icon,
.overlay-icon,
.map-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, var(--primary), var(--accent));
    color:#fff;
    box-shadow:0 12px 25px rgba(99,102,241,.3);
}

/* =========================
   CARA PESAN
========================= */

.cara-card{
    background:rgba(17,24,39,.9);
    border:1px solid rgba(99,102,241,.1);
    border-radius:24px;
    padding:35px 28px;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.cara-card:hover{
    transform:translateY(-10px);
    border-color:rgba(99,102,241,.35);
    box-shadow:0 24px 50px rgba(99,102,241,.18);
}

.cara-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:60px;
    font-weight:900;
    line-height:1;
    color:rgba(255,255,255,.03);
    user-select:none;
}

.cara-icon{
    width:85px;
    height:85px;
    border-radius:22px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow:0 10px 30px rgba(99,102,241,.35);
}

.cara-icon i{
    font-size:36px;
    color:#fff;
}

.cara-card-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:14px;
}

.cara-text{
    color:#94a3b8;
    font-size:15px;
    line-height:1.8;
}

.cara-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg, var(--primary), var(--accent));
}

/* =========================
   HARGA
========================= */

.paket-card{
    position:relative;
    overflow:hidden;
    padding:32px;
    height:100%;
    display:flex;
    flex-direction:column;
    background:rgba(17,24,39,.9);
    border:1px solid rgba(99,102,241,.1);
    transition:all .35s ease;
}

.paket-card::before{
    content:'';
    position:absolute;
    inset:0;
    opacity:0;
    transition:.3s;
    background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,.08), transparent 60%);
}

.paket-card:hover::before{
    opacity:1;
}

.paket-card:hover{
    border-color:rgba(99,102,241,.3);
    box-shadow:0 24px 50px rgba(99,102,241,.18);
}

.paket-badge{
    position:absolute;
    top:18px;
    right:-35px;
    padding:7px 40px;
    font-size:12px;
    font-weight:700;
    color:#fff;
    transform:rotate(45deg);
    background:linear-gradient(135deg, var(--primary), var(--accent));
    z-index:1;
}

.paket-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.paket-desc{
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
}

.paket-harga{
    font-size:38px;
    font-weight:800;
    background:linear-gradient(135deg, #818cf8, #06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.paket-feature{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:auto;
    padding-top:24px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#cbd5e1;
    font-size:15px;
}

.feature-item i{
    color:#6366f1;
}

.checkbox-wrapper{
    position:relative;
    width:25px;
    height:25px;
    flex-shrink:0;
    z-index:2;
    margin-top:4px;
}

.checkbox-wrapper .paket-check{
    position:absolute;
    inset:0;
    margin:0;
    appearance:none;
    -webkit-appearance:none;
}

.checkbox-wrapper .checkmark-custom{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
    opacity:0;
    pointer-events:none;
    transition:.2s;
}

.paket-check{
    width:25px;
    height:25px;
    border:2px solid #6366f1;
    border-radius:8px !important;
    background:rgba(99,102,241,.08);
    cursor:pointer;
}

.paket-check:checked{
    background:var(--primary);
    border-color:var(--primary);
}

.paket-check:checked + .checkmark-custom{
    opacity:1;
}

.btn-booking{
    padding:18px 50px;
    border-radius:60px;
    font-size:16px;
    letter-spacing:.4px;
}

/* =========================
   GALLERY
========================= */

.gallery-card{
    overflow:hidden;
    height:100%;
    background:rgba(17,24,39,.9);
    border:1px solid rgba(99,102,241,.08);
}

.gallery-image-wrapper{
    position:relative;
    height:260px;
    overflow:hidden;
}

.gallery-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.gallery-card:hover .gallery-image{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    opacity:0;
    transition:.35s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg, rgba(10,15,30,.1), rgba(10,15,30,.85));
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.overlay-content{
    text-align:center;
    transform:translateY(18px);
    transition:.35s ease;
}

.gallery-card:hover .overlay-content{
    transform:translateY(0);
}

.overlay-icon{
    width:65px;
    height:65px;
    margin:auto auto 15px;
    border-radius:50%;
    font-size:24px;
}

.overlay-title{
    color:#fff;
    font-weight:700;
    margin-bottom:8px;
}

.overlay-text{
    color:#cbd5e1;
    font-size:14px;
}

.gallery-content{
    padding:22px;
}

.gallery-card-title{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.gallery-line{
    display: none;
}

.gallery-desc{
    color:#64748b;
    font-size:14px;
    line-height:1.8;
}

/* =========================
   TESTIMONI
========================= */

.testimonial-form-card{
    max-width:1000px;
    margin:0 auto 15px;
    padding:14px 24px;
    border-radius:24px;
    background:rgba(17,24,39,.92);
    border:1px solid rgba(99,102,241,.1);
}

.alert-login{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
    padding:0;
}

.alert-login i{
    font-size:34px;
    color:#818cf8;
}

.alert-login p{
    font-size:13px;
    margin-bottom:0 !important;
    color:#64748b !important;
    line-height:1.5;
}

.btn-login-now{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
    background:linear-gradient(135deg,#6366f1,#8b5cf6);
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
    width:auto;
}

.btn-login-now:hover{
    transform:translateY(-2px);
    color:#fff;
    box-shadow:0 8px 20px rgba(99,102,241,.35);
}

.user-avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg, var(--primary), var(--accent));
    color:#fff;
}

.form-avatar{
    width:46px;
    height:46px;
    margin-right:12px;
}

.user-avatar{
    width:42px;
    height:42px;
    font-size:15px;
    font-weight:700;
}

.custom-label{
    margin-bottom:8px;
    color:#e2e8f0;
    font-size:13px;
    font-weight:600;
}

.custom-input{
    padding:12px 14px !important;
    border-radius:14px !important;
    border:1px solid rgba(99,102,241,.15) !important;
    background:rgba(10,15,30,.7) !important;
    color:#e2e8f0 !important;
    font-size:14px !important;
    transition:.3s ease;
}

.custom-input:focus{
    border-color:var(--primary) !important;
    box-shadow:0 0 0 3px rgba(99,102,241,.15) !important;
    background:rgba(10,15,30,.9) !important;
}

.custom-input::placeholder{
    color:#475569;
}

input[type="file"],
#foto{
    display:none !important;
}

.upload-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    border-radius:14px;
    border:1px solid rgba(99,102,241,.2);
    background:rgba(99,102,241,.08);
    color:#e2e8f0;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.upload-btn:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
}

.preview-image{
    display:none;
    max-width:90px;
    margin-top:12px;
    border-radius:14px;
    border:2px solid rgba(99,102,241,.2);
}

.btn-submit-testimoni{
    width:100%;
    padding:13px;
    border-radius:50px;
}


.alert-login{
    padding:35px 15px;
}

.alert-login i,
.empty-testimoni i{
    font-size:45px;
    color:#818cf8;
}

.testimonial-card{
    overflow:hidden;
    background:rgba(17,24,39,.9);
    border:1px solid rgba(99,102,241,.1);
}

.testimonial-image-wrapper{
    height:180px;
    overflow:hidden;
}

.testimonial-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.testimonial-card:hover .testimonial-image{
    transform:scale(1.04);
}

.testimonial-content{
    padding:20px;
}

.rating-stars{
    color:#f59e0b;
    font-size:15px;
}

.testimonial-message{
    color:#94a3b8;
    font-size:13px;
    line-height:1.7;
}

.empty-testimoni,
.empty-gallery{
    padding:60px 20px;
    border-radius:24px;
    border:1px dashed rgba(99,102,241,.2);
    background:rgba(99,102,241,.03);
    text-align:center;
}

/* =========================
   MAP
========================= */

.map-card{
    overflow:hidden;
    background:rgba(17,24,39,.9);
    border:1px solid rgba(99,102,241,.12);
}

.map-info{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    padding:28px;
    border-bottom:1px solid rgba(99,102,241,.08);
}

.map-info-box{
    flex:1;
    min-width:240px;
    display:flex;
    align-items:center;
    gap:16px;
}

.map-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    font-size:22px;
    background:linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow:0 8px 20px rgba(99,102,241,.3);
}

.map-info-box h5{
    margin-bottom:4px;
    color:#fff;
    font-size:17px;
    font-weight:700;
}

.map-info-box p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

.map-wrapper{
    width:100%;
    height:420px;
    overflow:hidden;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(100%) invert(92%) contrast(88%) hue-rotate(190deg) brightness(0.85);
}

/* =========================
   ALERT
========================= */

.alert-success{
    color:#6ee7b7;
    border:none;
    background:rgba(16,185,129,.1);
    border:1px solid rgba(16,185,129,.15);
    border-radius:12px;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    background:rgba(17,24,39,.98);
    border:1px solid rgba(99,102,241,.15);
    border-radius:16px;
    padding:8px;
    min-width:200px;
    margin-top:10px;
    z-index:99999;
    box-shadow:0 16px 40px rgba(0,0,0,.4);
    backdrop-filter:blur(20px);
}

.dropdown-item{
    color:#e2e8f0;
    border-radius:10px;
    padding:10px 14px;
    transition:.25s;
    font-size:14px;
}

.dropdown-item:hover{
    background:rgba(99,102,241,.15);
    color:#818cf8;
}

.dropdown-divider{
    border-color:rgba(99,102,241,.1);
}

/* =========================
   FOOTER
========================= */

footer{
    background:linear-gradient(180deg, #0a0f1e, #070b16);
    padding:50px 0 30px;
    color:white;
    border-top:1px solid rgba(99,102,241,.1);
}

footer h5,
footer h4{
    font-weight:700;
    margin-bottom:18px;
    color:white;
}

footer p{
    color:#475569;
    line-height:1.8;
    font-size:14px;
}

footer a{
    color:#64748b;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#818cf8;
}

.social{
    margin-top:20px;
}

.social i{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
    margin:0 6px;
    color:#6366f1;
    background:rgba(99,102,241,.08);
    border:1px solid rgba(99,102,241,.15);
    cursor:pointer;
    transition:.3s;
}

.social i:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg, var(--primary), var(--accent));
    color:white;
    border-color:transparent;
    box-shadow:0 10px 25px rgba(99,102,241,.35);
}

.footer-bottom{
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid rgba(99,102,241,.08);
    text-align:center;
    color:#334155;
    font-size:13px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero h1{
        font-size:50px;
    }

    .section-title,
    .gallery-title,
    .cara-title,
    .testimonial-title,
    .map-title{
        font-size:36px;
    }
}

@media(max-width:768px){

    .section,
    .cara-section,
    .gallery-section,
    .testimonial-section,
    .map-section,
    #harga{
        padding:75px 0;
    }

    .hero{
        min-height:90vh;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title,
    .gallery-title,
    .cara-title,
    .testimonial-title,
    .map-title{
        font-size:30px;
    }

    .section-subtitle,
    .gallery-subtitle,
    .cara-subtitle,
    .testimonial-subtitle,
    .map-subtitle{
        font-size:14px;
    }

    .cara-card,
    .paket-card,
    .testimonial-form-card{
        padding:24px;
    }

    .gallery-image-wrapper{
        height:220px;
    }

    .gallery-content{
        padding:18px;
    }

    .gallery-card-title{
        font-size:18px;
    }

    .paket-harga{
        font-size:30px;
    }

    .btn-booking{
        width:100%;
    }

    .map-wrapper{
        height:320px;
    }

    footer{
        text-align:center;
    }

    .social{
        margin-top:15px;
    }
}