/* Custom Premium Style System for Urban Style Studio */

:root {
    --primary-dark: #0B132B;       /* Deep Navy */
    --primary-blue: #1C2541;       /* Dark Blue */
    --primary-medium: #3A506B;     /* Muted Blue */
    --primary-cyan: #00EBDE;       /* Bright Cyan/Aqua */
    --primary-cyan-hover: #00C4BA; /* Cyan hover state */
    --accent-blue: #48CAE4;        /* Soft Sky Blue */
    --bg-dark: #0B132B;            /* Navy dark background */
    --bg-dark-light: #16223F;      /* Lighter Navy for cards */
    --bg-light: #F4F7FC;           /* Clean soft background */
    --bg-card-light: #FFFFFF;      /* Clean card background */
    --text-dark: #1E293B;          /* Charcoal text */
    --text-light: #64748B;         /* Slate text */
    --text-muted: #94A3B8;         /* Light slate text */
    --text-white-muted: #A5B4FC;   /* Muted light text */
    --white: #FFFFFF;
    
    /* Font Declarations */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout & Styling properties */
    --container-max-width: 1200px;
    --header-height: 80px;
    --banner-height: 44px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(11, 19, 43, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 19, 43, 0.08), 0 4px 6px -2px rgba(11, 19, 43, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(11, 19, 43, 0.12), 0 10px 10px -5px rgba(11, 19, 43, 0.06);
    --shadow-cyan: 0 10px 25px -5px rgba(0, 235, 222, 0.3);
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: calc(var(--header-height) + var(--banner-height) + 10px);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

iframe {
    border: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.w-full {
    width: 100%;
}

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

.items-center {
    align-items: center;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Grids */
.grid {
    display: grid;
}

.grid-2-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Sections padding */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--white);
}

.text-light {
    color: var(--text-white-muted);
}

/* Section Title & Tags */
.section-header {
    margin-bottom: 60px;
}

.section-title-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(28, 37, 65, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.tag-cyan {
    background-color: rgba(0, 235, 222, 0.1);
    color: var(--primary-cyan);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

/* Custom Buttons styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    background-color: var(--primary-cyan-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 235, 222, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.bg-light .btn-secondary {
    color: var(--primary-dark);
    border-color: rgba(11, 19, 43, 0.2);
}

.bg-light .btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

/* MANOVA TECH Portfolio Banner */
.portfolio-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    height: var(--banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 235, 222, 0.2);
}

.portfolio-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.portfolio-badge {
    background-color: rgba(0, 235, 222, 0.15);
    color: var(--primary-cyan);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.portfolio-text {
    font-weight: 400;
    letter-spacing: 0.3px;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.portfolio-btn:hover {
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
}

/* Sticky Header Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--header-height);
    background-color: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(11, 19, 43, 0.95);
    box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 235, 222, 0.1);
    color: var(--primary-cyan);
    border-radius: 10px;
    border: 1px solid rgba(0, 235, 222, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
}

.logo-highlight {
    color: var(--primary-cyan);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 1100;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-sidebar-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    padding: 8px 0;
}

.mobile-nav-link:hover {
    color: var(--primary-cyan);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 19, 43, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--banner-height));
    display: flex;
    align-items: center;
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.8) 100%);
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-container-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-w-3xl;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: var(--primary-cyan);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFF 30%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 60px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-cyan);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-border {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Tentang Studio Styles */
.about-images-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
}

.about-img-main {
    grid-column: 1 / span 9;
    position: relative;
    z-index: 2;
}

.about-img-sub {
    grid-column: 7 / -1;
    margin-top: 30%;
    position: relative;
    z-index: 3;
    border: 8px solid var(--bg-light);
    border-radius: 24px;
}

.img-rounded {
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    left: -20px;
    bottom: -20px;
    z-index: 4;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-cyan);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-badge-years {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-cyan);
    line-height: 1;
}

.about-badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white-muted);
}

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

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(28, 37, 65, 0.05);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(28, 37, 65, 0.1);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-light);
}

/* Service Card Styles */
.service-card {
    background-color: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 235, 222, 0.3);
    box-shadow: 0 20px 40px -10px rgba(11, 19, 43, 0.5);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 235, 222, 0.08);
    color: var(--primary-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 235, 222, 0.15);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card .service-description {
    font-size: 15px;
    color: var(--text-white-muted);
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-cyan);
}

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

.service-link svg {
    transition: var(--transition);
}

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

/* Pricelist Styles */
.price-category-card {
    background-color: var(--bg-card-light);
    border: 1px solid rgba(28, 37, 65, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.price-category-card:hover {
    box-shadow: var(--shadow-lg);
}

.price-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 20px;
}

.category-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(28, 37, 65, 0.05);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-category-header h3 {
    font-size: 24px;
    font-weight: 800;
}

.price-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-item-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.price-item-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--bg-card-light);
    padding-right: 12px;
    z-index: 2;
}

.price-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #CBD5E1;
    margin: 0 8px;
    height: 1px;
}

.price-item-cost {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--bg-card-light);
    padding-left: 12px;
    z-index: 2;
}

.price-item-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
}

/* Galeri Section Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.4) 60%, rgba(11, 19, 43, 0) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 2;
}

.gallery-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-cyan);
    margin-bottom: 6px;
}

.gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Promo Card Styles */
.promo-card {
    background-color: var(--bg-card-light);
    border: 1px solid rgba(28, 37, 65, 0.06);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.promo-card.featured {
    border: 2px solid var(--primary-cyan);
    box-shadow: var(--shadow-cyan);
    transform: scale(1.03);
}

.promo-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.promo-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(28, 37, 65, 0.05);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge-featured {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 235, 222, 0.2);
}

.promo-header {
    margin-bottom: 30px;
}

.promo-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.promo-price-box {
    display: flex;
    flex-direction: column;
}

.promo-price-old {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.promo-price-new {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.promo-features li {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.promo-features li.disabled span {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Testimonial Card Styles */
.testimonial-card {
    background-color: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 235, 222, 0.2);
}

.stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-white-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-cyan);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.user-status {
    font-size: 12px;
    color: var(--text-white-muted);
}

/* Lokasi & Contact Styles */
.contact-info-card {
    background-color: var(--bg-card-light);
    border: 1px solid rgba(28, 37, 65, 0.05);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(28, 37, 65, 0.04);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 14px;
    color: var(--text-light);
}

.map-container-wrapper {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--bg-card-light);
    min-height: 400px;
}

.map-iframe-container {
    width: 100%;
    height: 100%;
}

/* FAQ Accordion Styles */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(0, 235, 222, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

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

.faq-icon-indicator {
    color: var(--text-white-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    font-size: 15px;
    color: var(--text-white-muted);
    line-height: 1.7;
}

/* Final CTA Section Styles */
.final-cta-section {
    color: var(--white);
    padding: 120px 0;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.8) 100%);
    z-index: 1;
}

.final-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.cta-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Pulse Animation */
.pulse-glow {
    position: relative;
}

.pulse-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 20px var(--primary-cyan);
    opacity: 0;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Footer Section Styles */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer-desc {
    color: var(--text-white-muted);
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
    border-color: var(--primary-cyan);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a {
    color: var(--text-white-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(4px);
}

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

.footer-contact li {
    display: flex;
    font-size: 14px;
    color: var(--text-white-muted);
}

.footer-contact li svg {
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 13px;
    color: var(--text-muted);
}

.portfolio-credit {
    font-size: 13px;
    color: var(--text-muted);
}

.credit-link {
    color: var(--primary-cyan);
    font-weight: 600;
}

.credit-link:hover {
    text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

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

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #EF4444;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Scroll Animation Initial States */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .section-title {
        font-size: 34px;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .grid-4-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .grid-3-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .portfolio-banner {
        height: auto;
        padding: 10px 0;
    }
    
    .portfolio-banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 16px;
    }
    
    .grid-2-col, .grid-3-col, .grid-4-col, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta .btn {
        display: none; /* Hide header CTA button, using mobile sidebar booking */
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        padding: 24px;
        width: 100%;
        gap: 16px;
    }
    
    .stat-border {
        width: 80%;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-images-wrapper {
        margin-bottom: 40px;
    }
    
    .about-img-sub {
        margin-top: 15%;
    }
    
    .about-badge {
        padding: 12px 18px;
        left: -10px;
        bottom: -10px;
    }
    
    .about-badge-years {
        font-size: 28px;
    }
    
    .contact-info-card {
        padding: 30px;
    }
    
    .promo-card.featured {
        transform: scale(1);
    }
    
    .promo-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .price-item-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-item-dots {
        display: none;
    }
    
    .price-item-cost {
        padding-left: 0;
        margin-top: 4px;
        color: var(--primary-cyan);
    }
    
    .price-category-card {
        padding: 24px;
    }
}
