/* ==========================================================
   Kostpedia - Kost Putri Stylesheet
   Theme: Feminim Soft (Pink Rose & Purple Lavender)
   ========================================================== */

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c084fc;          /* Purple 400 - soft lavender utama */
    --primary-dark: #a855f7;     /* Purple 500 */
    --primary-light: #d8b4fe;    /* Purple 300 - sangat soft */
    --accent: #f0abfc;           /* Fuchsia 300 - pink halus */
    --accent-dark: #e879f9;      /* Fuchsia 400 */
    --text: #1e293b;             /* Slate 800 */
    --text-light: #64748b;       /* Slate 500 */
    --text-dim: #94a3b8;         /* Slate 400 */
    --border: #e2e8f0;           /* Slate 200 */
    --bg: #ffffff;
    --bg-soft: #faf5ff;          /* Purple 50 - sangat soft lavender */
    --bg-warm: #f3e8ff;          /* Purple 100 - soft accent */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g><g transform='translate(40 40)' fill='%23c084fc' opacity='0.18'><ellipse cx='0' cy='-7' rx='3.5' ry='7'/><ellipse cx='7' cy='0' rx='7' ry='3.5'/><ellipse cx='0' cy='7' rx='3.5' ry='7'/><ellipse cx='-7' cy='0' rx='7' ry='3.5'/></g><circle cx='40' cy='40' r='2' fill='%23f0abfc' opacity='0.5'/><g transform='translate(150 80) rotate(45)' fill='%23a855f7' opacity='0.18'><ellipse cx='0' cy='0' rx='9' ry='3'/></g><circle cx='170' cy='150' r='1.8' fill='%23d8b4fe' opacity='0.5'/><g transform='translate(30 160)' fill='%23c084fc' opacity='0.16'><ellipse cx='0' cy='-5' rx='2.5' ry='5'/><ellipse cx='5' cy='0' rx='5' ry='2.5'/><ellipse cx='0' cy='5' rx='2.5' ry='5'/><ellipse cx='-5' cy='0' rx='5' ry='2.5'/></g><circle cx='30' cy='160' r='1.5' fill='%23f0abfc' opacity='0.5'/><g transform='translate(120 180) rotate(-30)' fill='%23a855f7' opacity='0.18'><ellipse cx='0' cy='0' rx='8' ry='2.8'/></g><circle cx='100' cy='100' r='1.3' fill='%23d8b4fe' opacity='0.45'/><circle cx='190' cy='40' r='1.3' fill='%23d8b4fe' opacity='0.45'/></g></svg>");
    background-attachment: fixed;
    background-repeat: repeat;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover { color: var(--primary); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(192, 132, 252, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 171, 252, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a { color: rgba(255, 255, 255, 0.9); }
.top-bar a:hover { color: #fff; }
.top-bar i { margin-right: 6px; color: var(--accent); }

/* ---------- Header / Navigation ---------- */
header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--accent-dark);
    color: #fff !important;
}

.nav-cta::after { display: none !important; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(168, 85, 247, 0.85), rgba(192, 132, 252, 0.7)),
        url('../images/teras.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'><g fill='%23ffffff' opacity='0.15'><g transform='translate(100 100)'><ellipse cx='0' cy='-30' rx='15' ry='30'/><ellipse cx='30' cy='0' rx='30' ry='15'/><ellipse cx='0' cy='30' rx='15' ry='30'/><ellipse cx='-30' cy='0' rx='30' ry='15'/><circle cx='0' cy='0' r='8' fill='%23fce7f3' opacity='0.4'/></g><g transform='translate(50 50) rotate(30)' fill='%23ffffff' opacity='0.5'><ellipse cx='0' cy='-10' rx='5' ry='10'/><ellipse cx='10' cy='0' rx='10' ry='5'/><ellipse cx='0' cy='10' rx='5' ry='10'/><ellipse cx='-10' cy='0' rx='10' ry='5'/></g><g transform='translate(160 60) rotate(-20)' fill='%23ffffff' opacity='0.4'><ellipse cx='0' cy='-8' rx='4' ry='8'/><ellipse cx='8' cy='0' rx='8' ry='4'/><ellipse cx='0' cy='8' rx='4' ry='8'/><ellipse cx='-8' cy='0' rx='8' ry='4'/></g><g transform='translate(40 160) rotate(60)' fill='%23ffffff' opacity='0.5'><ellipse cx='0' cy='-9' rx='4.5' ry='9'/><ellipse cx='9' cy='0' rx='9' ry='4.5'/><ellipse cx='0' cy='9' rx='4.5' ry='9'/><ellipse cx='-9' cy='0' rx='9' ry='4.5'/></g><g transform='translate(160 160) rotate(-45)' fill='%23ffffff' opacity='0.4'><ellipse cx='0' cy='-10' rx='5' ry='10'/><ellipse cx='10' cy='0' rx='10' ry='5'/><ellipse cx='0' cy='10' rx='5' ry='10'/><ellipse cx='-10' cy='0' rx='10' ry='5'/></g><circle cx='30' cy='30' r='2.5' fill='%23ffffff' opacity='0.6'/><circle cx='170' cy='30' r='2' fill='%23ffffff' opacity='0.6'/><circle cx='30' cy='170' r='2' fill='%23ffffff' opacity='0.6'/><circle cx='170' cy='170' r='2.5' fill='%23ffffff' opacity='0.6'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    top: -40px;
    left: -40px;
    opacity: 0.7;
}

.hero::after {
    bottom: -40px;
    right: -40px;
    opacity: 0.6;
    transform: rotate(45deg);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 750px;
    padding: 80px 0;
}

.hero .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p.lead {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hero-buttons .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* ---------- Quick Info Strip ---------- */
.info-strip {
    background: var(--bg-soft);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.info-item i {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.info-item strong {
    display: block;
    color: var(--text);
    font-size: 1.05rem;
}

.info-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- Section Common ---------- */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .label {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-header .label::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e879f9'><g transform='translate(10 10)'><ellipse cx='0' cy='-5' rx='2.5' ry='5'/><ellipse cx='5' cy='0' rx='5' ry='2.5'/><ellipse cx='0' cy='5' rx='2.5' ry='5'/><ellipse cx='-5' cy='0' rx='5' ry='2.5'/><circle cx='0' cy='0' r='1.8' fill='%23f0abfc'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.section-header .label::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e879f9'><g transform='translate(10 10)'><ellipse cx='0' cy='-5' rx='2.5' ry='5'/><ellipse cx='5' cy='0' rx='5' ry='2.5'/><ellipse cx='0' cy='5' rx='2.5' ry='5'/><ellipse cx='-5' cy='0' rx='5' ry='2.5'/><circle cx='0' cy='0' r='1.8' fill='%23f0abfc'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.section-header h2 {
    font-size: 2.3rem;
    color: var(--text);
    margin: 10px 0 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- About / Two Column ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col .img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.two-col img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.two-col h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--text);
}

.two-col .label {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.two-col p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.02rem;
}

/* ---------- Room Showcase ---------- */
.rooms-section { background: var(--bg-soft); }

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card .room-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.room-card .room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img img { transform: scale(1.05); }

.room-card .price-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(240, 171, 252, 0.4);
}

.room-card .room-body {
    padding: 25px;
}

.room-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.room-card .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.room-card .room-features span {
    background: var(--bg-soft);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.room-card .room-features i {
    color: var(--primary);
    margin-right: 4px;
}

.room-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ---------- Facilities Grid ---------- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.facility-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.facility-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 18px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 16px rgba(192, 132, 252, 0.3);
}

.facility-card .icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23f0abfc'><g transform='translate(10 10)'><ellipse cx='0' cy='-5' rx='2.5' ry='5'/><ellipse cx='5' cy='0' rx='5' ry='2.5'/><ellipse cx='0' cy='5' rx='2.5' ry='5'/><ellipse cx='-5' cy='0' rx='5' ry='2.5'/><circle cx='0' cy='0' r='1.8' fill='%23a855f7'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
}

.facility-card:hover .icon {
    transform: rotate(360deg);
}

.facility-card h4 {
    margin-bottom: 10px;
    color: var(--text);
}

.facility-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ---------- Pricing Card ---------- */
.pricing-section { background: var(--bg-soft); }

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.pricing-card .pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 40px 30px;
}

.pricing-card .pricing-header .label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0;
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
}

.pricing-card .pricing-body {
    padding: 35px 30px;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-card ul li:last-child { border-bottom: none; }

.pricing-card .included {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card .included i {
    margin-right: 5px;
    color: var(--primary);
}

.pricing-card .not-included {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-card .ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- Rules Section ---------- */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rule-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.rule-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.rule-card .rule-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.rule-card h4 {
    margin-bottom: 10px;
    color: var(--text);
}

.rule-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.rules-note {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.rules-note i {
    color: var(--accent-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.rules-note p {
    margin: 0;
    color: #6b21a8;
    font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-soft); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: #fbbf24;          /* Gold - bintang review */
    margin-bottom: 12px;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(192, 132, 252, 0.3);
    border: 2px solid #fff;
}

.testimonial-card .author .info strong {
    display: block;
    color: var(--text);
}

.testimonial-card .author .info span {
    color: var(--text-light);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.testimonial-card .review-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #16a34a;
    font-weight: 600;
    padding: 4px 10px;
    background: #dcfce7;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}

.testimonial-card .review-link:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}

.testimonial-card .review-link i {
    font-size: 0.95em;
}

/* Google Maps CTA button (hijau muda) */
.btn.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.3);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn.btn-maps:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.4);
}

.btn.btn-maps i {
    font-size: 1.1em;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-section .btn-accent {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)),
                url('../images/kamar-tipe1.jpg') center/cover;
    background-blend-mode: multiply;
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; opacity: 0.95; max-width: 600px; margin: 0 auto; }

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ---------- Contact Section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    font-size: 0.92rem;
    opacity: 0.95;
}

.contact-item a {
    color: #fff;
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.15);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ---------- Footer ---------- */
footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    font-size: 0.92rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-col .logo { color: #fff; margin-bottom: 15px; }

.footer-col ul li {
    padding: 6px 0;
    font-size: 0.92rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.visible { display: flex; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 75px);
        background: #fff;
        flex-direction: column;
        padding: 30px;
        gap: 15px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-links.active { right: 0; }
    .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav-cta { margin-top: 10px; }

    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2rem; }
    .hero p.lead { font-size: 1rem; }
    section { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero { padding: 80px 0 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container { width: 95%; }
    .hero h1 { font-size: 1.7rem; }
    .price { font-size: 2.5rem !important; }
}