/* ==========================================================================
   GAYA TEKNIK AIRCOND - CSS DESIGN SYSTEM
   Theme: Tropical Corporate MEP & Cool Air Conditioning
   Colors: Deep Navy (Trust), Cool Teal (Coolness), Ice Cyan (Vibrancy)
   ========================================================================== */

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

:root {
    /* Color Palette Variables */
    --primary-hue: 204;
    --primary-sat: 85%;
    --primary-light: 15%;
    
    --primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light)); /* Deep Navy #06283D */
    --primary-light-bg: hsl(var(--primary-hue), var(--primary-sat), 96%);
    
    --secondary-hue: 196;
    --secondary-sat: 90%;
    --secondary-light: 40%;
    --secondary: hsl(var(--secondary-hue), var(--secondary-sat), var(--secondary-light)); /* Cool Teal #1363DF */
    
    --accent: #00D2C4; /* Ice Cyan */
    --accent-glow: rgba(0, 210, 196, 0.4);
    
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #09121f;
    --bg-dark-card: #132238;
    
    /* Layout & Spacing */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Borders & Shadow */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-white: rgba(255, 255, 255, 0.1);
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-accent: 0 4px 15px rgba(19, 99, 223, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

p {
    color: var(--text-muted);
}

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

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

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

.text-gradient {
    color: var(--primary);
}

.text-gradient-cyan {
    color: var(--secondary);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-white-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.bg-white-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(19, 99, 223, 0.15);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(19, 99, 223, 0.12);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(7, 47, 95, 0.2);
}

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

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background: #00beaf;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 210, 196, 0.4);
}

.btn-wa {
    background-color: #25D366;
    color: var(--bg-white);
    font-weight: 600;
}

.btn-wa:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info, .top-bar-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-link:hover {
    color: var(--accent);
}

.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.brand-logo svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.navbar.scrolled .brand-logo svg {
    width: 38px;
    height: 38px;
}

.brand-text span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Menu Toggle Open Animation */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background-color: var(--bg-dark);
    color: rgba(248, 250, 252, 0.7);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 3px solid var(--secondary);
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-brand-logo svg {
    width: 50px;
    height: 50px;
    color: var(--accent);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background: var(--secondary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--accent);
}

/* ==========================================================================
   COMMON LAYOUT COMPONENTS & SECTIONS
   ========================================================================== */

/* Section Heading */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--primary-light-bg);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(19, 99, 223, 0.1);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Inner Page Header */
.page-hero {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    display: none;
}

.page-hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-desc {
    color: rgba(248, 250, 252, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    color: rgba(248, 250, 252, 0.7);
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(248, 250, 252, 0.4);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */

.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-wa svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.floating-wa i {
    font-size: 34px;
    line-height: 1;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

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

.anim-float {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .top-bar-info {
        gap: 1rem;
    }
    
    .top-bar-social {
        display: none; /* Hide social icons on mobile topbar to save space */
    }

    .navbar {
        height: var(--header-height);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .page-hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero-desc {
        margin: 0 auto;
    }

    .breadcrumb {
        justify-content: center;
    }

    .floating-wa {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .floating-wa svg {
        width: 26px;
        height: 26px;
    }
    
    .floating-wa i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none; /* Hide top bar completely on very small screens */
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   COMPONENT STYLES (HERO, STATS, SERVICES, BOOKING FORM, FAQs)
   ========================================================================== */

/* Hero landing */
.hero {
    position: relative;
    background-color: var(--primary-light-bg);
    color: var(--text-dark);
    padding: 7rem 0 6rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero::after {
    display: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color-white);
}

.hero-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.hero-floating-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
}

.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-light-bg);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.badge-text p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Quick statistics section */
.stat-section {
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(19, 99, 223, 0.25);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* Service Card Detail styles */
.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-md);
}

.service-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: auto;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Why choose us grids */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.why-feature-item {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.why-feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(19, 99, 223, 0.15);
    box-shadow: var(--shadow-sm);
}

.why-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-light-bg);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.why-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-feature-title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.why-feature-desc {
    font-size: 0.92rem;
    line-height: 1.5;
}

.why-image-panel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image-panel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.why-image-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 280px;
}

.why-image-overlay h4 {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.why-image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Booking Section with interactive Form */
.booking-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: flex-start;
}

.booking-info-box {
    background: var(--primary);
    color: var(--text-light);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.booking-info-box::after {
    display: none;
}

.booking-info-title {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.booking-info-text {
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.booking-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.booking-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.booking-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-detail-icon svg {
    width: 20px;
    height: 20px;
}

.booking-detail-content h4 {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.booking-detail-content p {
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.92rem;
}

.booking-form-wrapper {
    background: var(--bg-white);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
    outline: none;
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--secondary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(19, 99, 223, 0.12);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Accordion list */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(19, 99, 223, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    user-select: none;
    transition: var(--transition-smooth);
    gap: 1.5rem;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    padding: 2.5rem;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FBBF24; /* Golden star color */
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-quote {
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light-bg);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.testimonial-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.testimonial-meta p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Area checklist items */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--primary);
}

.area-item svg {
    width: 20px;
    height: 20px;
    color: #10B981; /* Green checkmark color */
}

/* ==========================================================================
   UPDATED MOBILE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-image-panel img {
        height: 400px;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem 0;
        text-align: center;
    }
    
    .hero .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        height: 350px;
    }
    
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-info-box {
        padding: 2.5rem 2rem;
    }
    
    .booking-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   PRICING / PAKET HARGA SECTION
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card--featured {
    border-color: var(--secondary);
    box-shadow: 0 8px 32px rgba(19, 99, 223, 0.15);
    transform: translateY(-8px);
}
.pricing-card--featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 16px 40px rgba(19, 99, 223, 0.22);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-card-header { text-align: center; }

.pricing-tier-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}
.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}
.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.pricing-card--featured .pricing-amount { color: var(--secondary); }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10B981;
}

.pricing-btn {
    text-align: center;
    width: 100%;
}

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    margin-bottom: 3.5rem;
}

/* ===== TRUST GRID (4 poin keunggulan) ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
}

.trust-item { text-align: center; }

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary);
}
.trust-icon svg { width: 26px; height: 26px; }

.trust-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.trust-desc {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card--featured {
        transform: none;
    }
    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        padding: 1.75rem 1rem;
        gap: 1.25rem;
    }
    .pricing-amount { font-size: 2rem; }
}
