/* --------------------------------------------------
   DESAIN SYSTEM & VARIABEL
   -------------------------------------------------- */
:root {
    /* Colors */
    --bg-primary: #FAF6F0;       /* Cream Soft */
    --bg-secondary: #FFFFFF;     /* Pure White */
    --bg-dark: #1E140F;          /* Espresso Dark */
    --bg-dark-accent: #2E221D;   /* Medium Coffee */
    --text-main: #2E221D;        /* Dark Espresso Text */
    --text-light: #F4EFEA;       /* Off-White Text */
    --text-muted: #7E6C65;       /* Warm Muted Text */
    --primary: #C68B59;          /* Caramel */
    --primary-hover: #AF7645;    /* Dark Caramel */
    --accent: #E6A15C;           /* Amber/Gold */
    --border-color: #EADFD5;     /* Warm Border */
    --accent-glow: rgba(198, 139, 89, 0.15);
    
    /* Shadows & Border Radius */
    --shadow-sm: 0 4px 6px -1px rgba(30, 20, 15, 0.05);
    --shadow-md: 0 12px 24px -10px rgba(30, 20, 15, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(30, 20, 15, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-secondary);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* --------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-family: 'Playfair Display', serif;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1875rem; /* 35px */
}

/* --------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

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

/* --------------------------------------------------
   BUTTONS
   -------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-secondary);
    box-shadow: 0 4px 14px rgba(198, 139, 89, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 139, 89, 0.5);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

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

.btn-light {
    background-color: var(--bg-secondary);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--bg-secondary);
    border: 2px solid var(--bg-secondary);
}

.btn-outline-light:hover {
    background-color: var(--bg-secondary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn i {
    width: 18px;
    height: 18px;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header.scrolled .logo-text {
    color: var(--bg-dark);
}

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

.header.scrolled .mobile-menu-toggle {
    color: var(--bg-dark);
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.header.scrolled .nav-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.logo-text {
    color: var(--text-light);
    transition: color var(--transition-normal);
}

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

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

.nav-link {
    font-weight: 550;
    font-size: 0.95rem;
    color: rgba(244, 239, 234, 0.85);
    position: relative;
    transition: color var(--transition-normal);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.mobile-menu-toggle i {
    width: 28px;
    height: 28px;
}

/* --------------------------------------------------
   MOBILE MENU OVERLAY
   -------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--bg-dark);
}

.mobile-menu-close i {
    width: 28px;
    height: 28px;
}

.mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* --------------------------------------------------
   HERO SECTION
   -------------------------------------------------- */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(rgba(30, 20, 15, 0.85), rgba(30, 20, 15, 0.85)), url('img/1.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 161, 92, 0.22) 0%, rgba(230, 161, 92, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 139, 89, 0.22) 0%, rgba(198, 139, 89, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background-color: rgba(198, 139, 89, 0.15);
    color: var(--primary);
    border: 1px solid rgba(198, 139, 89, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.125rem; /* 50px */
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(244, 239, 234, 0.7);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 550;
    font-size: 0.75rem;
    color: rgba(244, 239, 234, 0.85);
    white-space: nowrap;
}

.feat-icon {
    color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.hero-section .btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
    color: var(--text-light);
}

/* Hero Visual & Images */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-secondary);
}

/* Glow behind image */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(198, 139, 89, 0.25) 0%, rgba(250, 246, 240, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    background-color: rgba(198, 139, 89, 0.1);
    padding: 8px;
    box-sizing: content-box;
    border-radius: 50%;
}

.floating-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.floating-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-1 {
    top: 15%;
    left: -15%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 15%;
    right: -10%;
    animation: float 4s ease-in-out infinite 2s;
}

/* Background Shapes */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(198, 139, 89, 0.12);
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(230, 161, 92, 0.08);
    bottom: -100px;
    left: -100px;
}

/* --------------------------------------------------
   KEUNGGULAN SECTION
   -------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    color: var(--bg-dark);
    margin-bottom: 16px;
    font-size: 2.25rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-icon-wrapper i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--bg-secondary);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--bg-dark);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --------------------------------------------------
   PRODUK SHOWCASE
   -------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--bg-secondary);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
}

.product-badge.accent {
    background-color: #2E221D;
}

.product-badge.warmth {
    background-color: #D97706;
}

.product-icon-area {
    height: 200px;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Styling cup representations via modern icons + subtle designs */
.product-cup-icon {
    width: 80px;
    height: 80px;
    color: var(--primary);
    opacity: 0.85;
    transition: var(--transition-normal);
}

.product-card:hover .product-cup-icon {
    transform: scale(1.1);
    color: var(--primary-hover);
}

.oval-cup-indicator {
    width: 100px;
    height: 120px;
    background-color: rgba(198, 139, 89, 0.1);
    border-radius: 50% 50% 40% 40% / 10% 10% 25% 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(198, 139, 89, 0.4);
}

.oval-cup-indicator .product-cup-icon {
    width: 50px;
    height: 50px;
}

.product-cup-icon.hot-cup {
    color: #D97706;
}

.product-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-body h3 {
    font-size: 1.35rem;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    list-style: none;
    margin-bottom: 24px;
    background-color: var(--bg-primary);
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-specs li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-specs li i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* --------------------------------------------------
   KALKULATOR ESTIMASI HARGA
   -------------------------------------------------- */
.calculator-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.calc-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-header h2 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 2rem;
}

.calc-header p {
    color: rgba(244, 239, 234, 0.7);
    font-size: 0.95rem;
    max-width: 600px;
}

.calc-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}

.calc-badge i {
    width: 18px;
    height: 18px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.calc-inputs {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-dark);
}

/* Radio Tiles */
.radio-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.radio-tile-label {
    cursor: pointer;
}

.radio-tile-label input {
    display: none;
}

.tile-content {
    border: 1px solid var(--border-color);
    padding: 16px 8px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background-color: var(--bg-primary);
    transition: var(--transition-normal);
}

.tile-content i {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.tile-content span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Mini Oval container representation */
.mini-oval {
    width: 22px;
    height: 26px;
    border-radius: 50% 50% 35% 35% / 10% 10% 20% 20%;
    border: 2.2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-oval i {
    width: 12px;
    height: 12px;
    display: none;
}

.radio-tile-label input:checked + .tile-content {
    border-color: var(--primary);
    background-color: rgba(198, 139, 89, 0.08);
    box-shadow: 0 0 0 1px var(--primary);
}

.radio-tile-label input:checked + .tile-content i {
    color: var(--primary);
}

.radio-tile-label input:checked + .tile-content .mini-oval {
    border-color: var(--primary);
}

.radio-tile-label input:checked + .tile-content span {
    color: var(--bg-dark);
}

/* Forms Elements */
.form-select {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

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

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-badge {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Range Slider Styles */
.form-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    margin: 10px 0;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Results panel */
.calc-results {
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
}

.results-inner {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.results-title {
    font-size: 1.15rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-primary);
    padding-bottom: 12px;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.summary-item span {
    color: var(--text-muted);
}

.summary-item strong {
    color: var(--bg-dark);
    font-weight: 600;
}

.calc-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 24px;
}

.price-box {
    background-color: rgba(198, 139, 89, 0.08);
    border: 1px solid rgba(198, 139, 89, 0.2);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-per-pcs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-unit {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-hover);
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(198, 139, 89, 0.2);
    padding-top: 12px;
}

.price-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.calc-notice {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 24px;
}

.calc-notice i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 1px;
}

/* --------------------------------------------------
   ALUR PEMESANAN (STEPS)
   -------------------------------------------------- */
#cara-pemesanan {
    background: linear-gradient(rgba(250, 246, 240, 0.92), rgba(250, 246, 240, 0.92)), url('img/3.jpg') no-repeat center center;
    background-size: cover;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.step-card {
    position: relative;
    background-color: var(--bg-secondary);
    padding: 20px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-num {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(198, 139, 89, 0.15);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition-normal);
}

.step-card:hover .step-num {
    color: var(--primary);
    transform: scale(1.1) translateX(4px);
    display: inline-block;
}

.step-card h3 {
    font-size: 1rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --------------------------------------------------
   FAQ SECTION (ACCORDION)
   -------------------------------------------------- */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-dark);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: inherit;
}

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

.faq-chevron {
    color: var(--text-muted);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-primary);
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --------------------------------------------------
   CTA BANNER SECTION
   -------------------------------------------------- */
.cta-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-container {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.9) 0%, rgba(46, 34, 29, 0.9) 100%), url('img/4.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 0;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(198, 139, 89, 0.1);
    border: 1px solid rgba(198, 139, 89, 0.25);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    z-index: 3;
}

.cta-badge-top i {
    width: 14px;
    height: 14px;
}

.cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1875rem; /* 35px */
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 780px;
    line-height: 1.3;
    z-index: 3;
}

.cta-container h2 .accent-text {
    color: var(--accent);
}

.cta-subtitle {
    color: rgba(244, 239, 234, 0.65);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    z-index: 3;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 48px;
    z-index: 3;
}

.cta-actions .btn {
    border-radius: 50px;
}

.btn-wa {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

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

.cta-meta {
    display: flex;
    justify-content: center;
    gap: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    width: 100%;
    max-width: 500px;
    z-index: 3;
}

.cta-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.cta-meta-label {
    font-size: 0.72rem;
    color: rgba(244, 239, 234, 0.45);
    font-weight: 550;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-meta-value {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 700;
}

/* Backdrop glow & concentric circles */
.cta-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.cta-circle-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(198, 139, 89, 0.05) 0%, rgba(30, 20, 15, 0) 70%);
}

.cta-circle-2 {
    width: 820px;
    height: 820px;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 60px 24px;
    }
    
    .cta-container h2 {
        font-size: 1.85rem; /* 29.6px */
    }
    
    .cta-meta {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .cta-meta {
        flex-direction: column;
        gap: 16px;
    }
}

/* --------------------------------------------------
   FOOTER
   -------------------------------------------------- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--text-light);
}

.footer-desc {
    color: rgba(244, 239, 234, 0.65);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

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

.footer-links h4, .footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.footer-links a {
    color: rgba(244, 239, 234, 0.7);
    font-size: 0.9rem;
}

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

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(244, 239, 234, 0.7);
    line-height: 1.5;
}

.footer-contact p i {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(244, 239, 234, 0.4);
}

/* --------------------------------------------------
   ANIMATIONS & EFFECTS
   -------------------------------------------------- */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Scroll reveal mechanism */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   -------------------------------------------------- */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .steps-container .step-card:last-child {
        grid-column: span 2;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.85rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 16px;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-results {
        border-left: 0;
        border-top: 1px solid var(--border-color);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand, .footer-app {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .nav-menu, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .cta-container {
        padding: 60px 30px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    
    .radio-tiles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .floating-card {
        padding: 8px 12px;
    }
    
    .card-1 {
        left: -5%;
    }
    
    .card-2 {
        right: -5%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .calc-inputs {
        padding: 24px;
    }
    
    .calc-results {
        padding: 24px;
    }
    
    .results-inner {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------
   CLIENT MARQUEE SECTION
   -------------------------------------------------- */
.client-marquee-section {
    padding: 40px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-title-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.marquee-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-mock {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-muted);
    background-color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    white-space: nowrap;
    transition: var(--transition-normal);
}

.client-logo-mock:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------------
   KATALOG PRODUK BARU (REDESIGNED)
   -------------------------------------------------- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Top Visual Area (Stripes background) */
.catalog-visual {
    background: repeating-linear-gradient(135deg, #FAF6F0, #FAF6F0 10px, #EAE2D8 10px, #EAE2D8 20px);
    padding: 36px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Badge Top-Left */
.catalog-badge-ref {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.catalog-badge-ref.badge-terlaris {
    background-color: #B91C1C;
    color: #FFFFFF;
}

.catalog-badge-ref.badge-custom {
    background-color: var(--bg-dark);
    color: var(--bg-primary);
}

.catalog-badge-ref.badge-baru {
    background-color: #D97706;
    color: #FFFFFF;
}

/* Center Illustration Icon (SVG Cartoonish Neubrutalist style) */
.catalog-custom-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(3px 3px 0px #1E140F);
    transition: transform var(--transition-fast);
}

.catalog-card:hover .catalog-custom-icon {
    transform: scale(1.1) rotate(-3deg);
}

/* Visual hint label */
.catalog-visual-hint {
    font-size: 0.75rem;
    color: #8C756C;
    text-align: center;
    line-height: 1.4;
    font-weight: 550;
}

/* Bottom Content Area */
.catalog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-category {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    display: block;
}

.catalog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.catalog-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 75px;
}

/* Pills Tags */
.catalog-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.catalog-pills span {
    font-size: 0.72rem;
    color: #7E6C65;
    background-color: #F6EFE9;
    border: 1px solid #EADFD5;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* Footer Row */
.catalog-footer {
    border-top: 1px solid #EADFD5;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.catalog-footer-left {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.catalog-footer-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.catalog-footer-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 550;
}

.catalog-order-btn {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.catalog-order-btn:hover {
    background-color: var(--primary);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(198, 139, 89, 0.3);
}

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

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

/* --------------------------------------------------
   GALLERY FOTO SECTION
   -------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 20, 15, 0.8) 0%, rgba(30, 20, 15, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
}

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

/* --------------------------------------------------
   WHY US (KEUNGGULAN) UPDATE
   -------------------------------------------------- */
#keunggulan {
    background: linear-gradient(rgba(250, 246, 240, 0.92), rgba(250, 246, 240, 0.92)), url('img/2.jpg') no-repeat center center;
    background-size: cover;
}

.features-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

#keunggulan .feature-card {
    padding: 18px 14px;
    border-radius: 14px;
}

#keunggulan .feature-icon-wrapper {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
}

#keunggulan .feature-icon-wrapper i {
    width: 18px;
    height: 18px;
}

#keunggulan .feature-card h3 {
    font-size: 0.92rem;
    margin-bottom: 6px;
}

#keunggulan .feature-card p {
    font-size: 0.76rem;
    line-height: 1.35;
}

@media (max-width: 992px) {
    .features-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* --------------------------------------------------
   TESTIMONIAL SECTION MARQUEE
   -------------------------------------------------- */
.testimoni-section {
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.testi-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 20px 0;
}

.testi-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.testi-marquee-track:hover {
    animation-play-state: paused;
}

.testi-card {
    flex-shrink: 0;
    width: 320px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    background-color: var(--bg-secondary);
}

.testi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testi-rating {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testi-quote-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    opacity: 0.2;
    flex-shrink: 0;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    border-top: 1px solid rgba(198, 139, 89, 0.1);
    padding-top: 16px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(198, 139, 89, 0.2);
}

.testi-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-user-info strong {
    font-size: 0.88rem;
    color: var(--bg-dark);
    line-height: 1.2;
}

.testi-user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* --------------------------------------------------
   MAPS SECTION
   -------------------------------------------------- */
.maps-section {
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.maps-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.maps-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.maps-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: var(--bg-secondary);
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
    z-index: 5;
    border: none;
    text-decoration: none;
}

.maps-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.maps-btn i {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .maps-btn {
        display: none !important;
    }
}

/* --------------------------------------------------
   INFO CTA SECTION (HORIZONTAL BAR)
   -------------------------------------------------- */
.info-cta-section {
    background-color: var(--bg-dark); /* Espresso Dark background */
    padding: 32px 0; /* Slim vertical spacing */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.info-cta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 200px; /* Allow wrapping cleanly on smaller viewports */
}

.info-cta-icon-wrapper {
    width: 46px;
    height: 46px;
    background-color: var(--bg-dark-accent); /* Medium Coffee background for circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-cta-icon-wrapper i {
    width: 20px;
    height: 20px;
}

/* Specific icon colors matching the reference image style */
.icon-alamat i {
    color: #EF4444; /* Red pin color */
}

.icon-whatsapp i {
    color: #3B82F6; /* Blue phone screen color */
}

.icon-jam i {
    color: #FFFFFF; /* White clock face color */
}

.icon-pengiriman i {
    color: #F97316; /* Orange/red truck color */
}

.info-cta-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-cta-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(244, 239, 234, 0.4); /* Muted light label */
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.info-cta-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light); /* Cream/white text */
    line-height: 1.2;
}

.info-cta-value.highlight {
    color: var(--accent); /* Caramel/Amber highlight for WhatsApp */
}

/* Responsive adjustment for tablet/mobile */
@media (max-width: 992px) {
    .info-cta-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 576px) {
    .info-cta-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --------------------------------------------------
   FOOTER UPDATE (KOLOM KE-4 & APP BADGES)
   -------------------------------------------------- */
.footer-app {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-app h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent);
}

.footer-app .social-title {
    margin-top: 10px;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--text-light);
}

.app-badge:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.app-badges a:first-child::before {
    content: "▶";
    color: #34A853;
}

.app-badges a:last-child::before {
    content: "";
    font-size: 1.5rem;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
}

.app-badge-subtitle {
    font-size: 0.65rem;
    color: rgba(244, 239, 234, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.app-badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}
