@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --primary-color: #0b7a75;
    --primary-light: #17b890;
    --primary-dark: #054f4b;
    --primary-glow: rgba(23, 184, 144, 0.15);
    --primary-rgb: 11, 122, 117;
    --accent-color: #f7a072;
    --accent-glow: rgba(247, 160, 114, 0.2);
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0b1523;
    --border-radius-sm: 8px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -3px rgba(11, 122, 117, 0.08), 0 4px 15px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(11, 122, 117, 0.15);
    --shadow-glow: 0 0 40px rgba(23, 184, 144, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- NAVBAR STYLES --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px -10px rgba(11, 122, 117, 0.1);
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 122, 117, 0.08);
}

header.scrolled .logo-text, header.scrolled .nav-link {
    color: var(--text-main);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 38px;
    height: 38px;
    fill: var(--primary-light);
    filter: drop-shadow(0 2px 8px var(--primary-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

header.scrolled .logo-text {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

header.scrolled .nav-link {
    color: var(--text-muted);
}

header.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px -5px rgba(23, 184, 144, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-book:hover::before {
    opacity: 1;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(23, 184, 144, 0.6);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

header.scrolled .menu-toggle span {
    background-color: var(--text-main);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 21, 35, 0.92) 0%, rgba(11, 21, 35, 0.65) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.hero-bullets span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-bullets span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Floating Aura behind image */
.hero-visual::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(23, 184, 144, 0) 70%);
    opacity: 0.4;
    z-index: -1;
    filter: blur(30px);
    animation: pulse 8s ease-in-out infinite alternate;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 4px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    transform-origin: center;
}

.hero-img {
    width: 100%;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 4px);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03);
}

/* --- SECTION GENERALS --- */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(23, 184, 144, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(23, 184, 144, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* --- ADVANTAGES SECTION --- */
.advantages {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(11, 78, 74, 0.92) 100%);
    z-index: 1;
}

.advantages .container {
    position: relative;
    z-index: 2;
}

.advantages .section-title {
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: rgba(11, 122, 117, 0.4);
    border: 1px solid rgba(23, 184, 144, 0.2);
    border-radius: var(--border-radius-md);
    padding: 40px;
    color: var(--text-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(20px);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 10px 40px -10px rgba(23, 184, 144, 0.3);
    border-color: rgba(23, 184, 144, 0.6);
    background: rgba(11, 122, 117, 0.6);
}

.advantage-img-holder {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.advantage-card:hover img {
    transform: scale(1.08);
}

.advantage-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* --- SERVICE OPTIONS SECTION --- */
.services {
    background-size: cover;
    background-position: center;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.95);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Premium Tabs Menu */
.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px -5px rgba(11, 122, 117, 0.4);
    transform: scale(1.03);
}

/* Dynamic Price lists container */
.prices-content-wrapper {
    position: relative;
    min-height: 300px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.price-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 122, 117, 0.05);
}

.price-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    padding: 14px 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.price-item:hover {
    background-color: rgba(23, 184, 144, 0.04);
    padding-left: 16px;
    padding-right: 16px;
}

.price-item-name {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    flex-shrink: 0;
    max-width: 70%;
}

.price-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #cbd5e1;
    margin: 0 16px;
    height: 1px;
    opacity: 0.6;
}

.price-item-cost {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    font-size: 1.15rem;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 122, 117, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    font-size: 12rem;
    font-family: serif;
    color: rgba(11, 122, 117, 0.03);
    top: -20px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 15px 30px -10px rgba(11, 122, 117, 0.1);
    border-color: rgba(23, 184, 144, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b; /* Deep Amber */
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.testimonial-author, .testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.testimonial-header {
    margin-top: 0;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary-light);
    box-shadow: 0 4px 10px rgba(23, 184, 144, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 700;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- FOOTER SECTION --- */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0 40px 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 184, 144, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand .logo-text {
    color: var(--text-light);
    font-size: 1.6rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.75;
    max-width: 380px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 3px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #94a3b8;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #94a3b8;
}

.footer-contact svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
    filter: drop-shadow(0 2px 8px rgba(23, 184, 144, 0.3));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    from {
        transform: scale(0.9) translateY(0);
        opacity: 0.3;
    }
    to {
        transform: scale(1.1) translateY(-10px);
        opacity: 0.5;
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-bullets {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: -10px 0 40px rgba(11, 122, 117, 0.15);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 1000;
        border-left: 1px solid rgba(11, 122, 117, 0.1);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        color: var(--text-main) !important;
        font-size: 1.15rem;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid, .footer-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .price-list {
        padding: 24px;
    }
    .tab-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
    .price-item {
        font-size: 0.95rem;
        align-items: center;
    }
    .price-item-dots {
        display: none;
    }
    .price-item-name {
        max-width: 65%;
        line-height: 1.4;
    }
    .price-item-cost {
        font-size: 1.05rem;
        font-weight: 700;
    }
}

/* ==========================================================================
   TENTANG KAMI (ABOUT US) SECTION
   ========================================================================== */
.about {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 184, 144, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.about-feature-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-light);
    filter: drop-shadow(0 2px 4px var(--primary-glow));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-light);
    border: 1px solid rgba(11, 122, 117, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 184, 144, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   RESTYLING FOOTER (4-COLUMN LAYOUT)
   ========================================================================== */
.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 30px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    border: none;
}

.btn-whatsapp-footer:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-footer svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-nav-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-nav-block ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.footer-nav-block a {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-nav-block a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-col-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col-contact-info span.contact-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.footer-col-contact-info span.contact-detail {
    color: #94a3b8;
}

/* ==========================================================================
   BOOKING SERVICES MODAL SYSTEM
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 21, 35, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    background-color: #231c1a; /* Dark brown style matching image */
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #0f172a;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control[disabled], 
.form-control[readonly] {
    background-color: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.modal-footer {
    padding: 16px 24px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel {
    background-color: #64748b;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: none;
}

.btn-cancel:hover {
    background-color: #475569;
}

.btn-submit-booking {
    background-color: #25d366;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-submit-booking:hover {
    background-color: #20ba5a;
}

.btn-submit-booking svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsive updates for new elements */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .modal-container {
        width: 95%;
    }
    .modal-body {
        padding: 20px;
    }
}

/* --- TESTIMONIAL PROOF IMAGE --- */
.testimonial-proof-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid rgba(11, 122, 117, 0.08);
    box-shadow: var(--shadow-sm);
}

.testimonial-proof-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-proof-img {
    transform: scale(1.04);
}
