/* Rose Clean & Organize - Custom Stylesheet */

/* ==========================================================================
   1. Design Tokens (Variables) & Core Setup
   ========================================================================== */
:root {
    /* Color Palette */
    --color-rose: #D9A5B3; /* Rosa Palo (Dusty Rose) */
    --color-rose-dark: #C28C9A;
    --color-rose-light: #F0C4D0;
    --color-rose-accent: #A86B7B;
    
    --color-gold: #C6A664; /* Dorado rico (Rich Gold) */
    --color-gold-light: #DFBF7A;
    --color-gold-dark: #A6864B;
    
    --color-chocolate: #3D2520;
    --color-chocolate-light: #5A3D37;
    --color-chocolate-muted: #8E7A75;
    
    --color-bg-ivory: #FAF6F5;
    --color-bg-white: #FFFFFF;
    
    --color-leaf: #8DA685;
    --color-leaf-dark: #6C8564;
    
    /* Layout Tokens */
    --font-heading: 'Cinzel', serif;
    --font-script: 'Alex Brush', cursive;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 30px rgba(61, 37, 32, 0.06);
    --box-shadow-hover: 0 15px 40px rgba(61, 37, 32, 0.12);
}

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

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

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

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

/* Typography Utility */
.script-font {
    font-family: var(--font-script);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-weight: 600;
}

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

button, input, select, textarea {
    font-family: inherit;
}

/* Grids & Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* ==========================================================================
   2. Components & Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-rose-dark);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-rose-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 98, 118, 0.3);
}

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

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

.btn-secondary-rose {
    background-color: transparent;
    color: var(--color-rose-dark);
    border: 2px solid var(--color-rose);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-chocolate);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 246, 245, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(61, 37, 32, 0.05);
    transition: var(--transition-smooth);
    padding: 10px 0; /* Add padding by default to prevent logo clipping on scroll-to-top */
}

.main-header.scrolled {
    background-color: var(--color-bg-white);
    box-shadow: 0 5px 20px rgba(61, 37, 32, 0.05);
    padding: 5px 0; /* Smoothly shrink on scroll */
}

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

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

.logo-svg {
    width: 105px;
    height: 63px;
    transition: var(--transition-smooth);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--color-chocolate);
}

.logo-subtitle {
    font-family: var(--font-script);
    font-size: 1.95rem;
    color: #8E1E38;
    margin-top: -5px;
}

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

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-rose-dark);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Bilingual Toggle Switch */
.lang-switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-chocolate-muted);
}

.lang-label {
    transition: var(--transition-smooth);
}

.lang-label.active {
    color: var(--color-chocolate);
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(61, 37, 32, 0.1);
    transition: .4s;
    border: 1px solid rgba(61, 37, 32, 0.05);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--color-rose-dark);
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-bg-white);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: var(--color-rose-accent);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-chocolate);
    cursor: pointer;
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background: linear-gradient(180deg, rgba(229, 164, 180, 0.08) 0%, rgba(250, 246, 245, 0) 100%);
    overflow: hidden;
}

.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--color-gold-light);
    opacity: 0.6;
    animation: sparkle-float 6s infinite ease-in-out;
}

.sparkle.s1 { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle.s2 { top: 25%; right: 12%; animation-delay: 2s; }
.sparkle.s3 { bottom: 20%; left: 45%; animation-delay: 4s; }

@keyframes sparkle-float {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.3) rotate(15deg); opacity: 0.8; }
}

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

.hero-tagline {
    font-size: 2.8rem;
    color: var(--color-rose-accent);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-chocolate-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.feature-tick {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-tick i {
    color: var(--color-leaf);
    font-size: 1.2rem;
}

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

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-bg-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    width: fit-content;
    box-shadow: 0 4px 10px rgba(61, 37, 32, 0.03);
    font-size: 0.85rem;
    font-weight: 600;
}

.location-badge i {
    color: var(--color-gold);
}

/* Glassmorphic card in Hero */
.hero-card-container {
    display: flex;
    justify-content: flex-end;
}

.hero-glass-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    box-shadow: 0 20px 50px rgba(61, 37, 32, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: card-bounce 5s infinite ease-in-out;
}

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

.card-sparkle {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    animation: spin 8s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-glass-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.hero-glass-card p {
    font-size: 0.9rem;
    color: var(--color-chocolate-light);
}

.quick-calculator-shortcut {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(61, 37, 32, 0.04);
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-rose-accent);
}

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

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-display .stars {
    color: var(--color-gold);
    font-size: 0.95rem;
}

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

/* ==========================================================================
   5. Section Header & Dividers
   ========================================================================== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 2.2rem;
    color: var(--color-rose-accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.4rem;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.divider-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-rose);
}

.divider-rose {
    font-size: 1.2rem;
    color: var(--color-rose-dark);
}

/* ==========================================================================
   6. Services Section
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--color-bg-ivory);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(61, 37, 32, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    background-color: var(--color-bg-white);
    border-color: rgba(229, 164, 180, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(229, 164, 180, 0.2);
    color: var(--color-rose-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--color-rose-dark);
    color: var(--color-bg-white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-chocolate-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-details {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details li {
    font-size: 0.85rem;
    padding-left: 20px;
    position: relative;
    color: var(--color-chocolate-muted);
}

.service-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-leaf-dark);
    font-weight: bold;
}

/* Highlighted/Recommended Service Card */
.service-card.highlighted {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-gold);
    box-shadow: var(--box-shadow);
}

.service-card.highlighted .service-icon {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-dark);
}

.service-card.highlighted:hover .service-icon {
    background-color: var(--color-gold);
    color: var(--color-chocolate);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-chocolate);
    font-size: 0.65rem;
    font-weight: 750;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(198, 166, 100, 0.25);
}

/* ==========================================================================
   7. Before & After Slider Section
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-bg-ivory);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 2px solid var(--color-rose);
    color: var(--color-chocolate);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: rgba(229, 164, 180, 0.1);
}

.filter-btn.active {
    background-color: var(--color-rose-dark);
    border-color: var(--color-rose-dark);
    color: var(--color-bg-white);
}

.slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
    user-select: none;
    border: 4px solid var(--color-bg-white);
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Temporary styled placeholders while the images are designed */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

.dirty-placeholder {
    background: linear-gradient(135deg, #A89590 0%, #7C6C67 100%);
    color: var(--color-bg-white);
}

.dirty-placeholder::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(var(--color-chocolate) 10%, transparent 11%),
                      radial-gradient(var(--color-chocolate) 10%, transparent 11%);
    background-size: 15px 15px;
    background-position: 0 0, 7.5px 7.5px;
}

.clean-placeholder {
    background: linear-gradient(135deg, #FAF1F3 0%, var(--color-rose-light) 50%, var(--color-rose) 100%);
    color: var(--color-chocolate);
}

.clean-placeholder::after {
    content: "✨";
    position: absolute;
    font-size: 8rem;
    opacity: 0.15;
    animation: rotate-sparkle 20s infinite linear;
}

@keyframes rotate-sparkle {
    to { transform: rotate(360deg); }
}

.placeholder-tag {
    position: absolute;
    top: 24px;
    padding: 6px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.before-tag {
    left: 24px;
    background-color: rgba(61, 37, 32, 0.7);
    color: var(--color-bg-white);
}

.after-tag {
    right: 24px;
    background-color: var(--color-rose-accent);
    color: var(--color-bg-white);
}

.placeholder-details {
    text-align: center;
    max-width: 400px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dirty-placeholder .placeholder-details {
    background-color: rgba(0, 0, 0, 0.25);
}

.placeholder-details i {
    font-size: 2.2rem;
}

.dirty-placeholder i {
    color: #FFAE8F;
}

.clean-placeholder i {
    color: var(--color-rose-accent);
}

.placeholder-details p {
    font-size: 1rem;
    font-weight: 600;
}

/* Overlay sizing for after image */
.after-image {
    width: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Positioned dynamically by JS */
    width: 4px;
    height: 100%;
    background-color: var(--color-bg-white);
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.handle-line {
    width: 2px;
    height: calc(50% - 24px);
    background-color: rgba(255, 255, 255, 0.7);
}

.handle-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    box-shadow: 0 4px 10px rgba(61, 37, 32, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose-accent);
    font-size: 1.1rem;
    transition: transform 0.15s ease;
}

.slider-handle:hover .handle-button {
    transform: scale(1.15);
    color: var(--color-chocolate);
}

.slider-instruction {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-chocolate-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slider-instruction i {
    animation: pointer-move 1.5s infinite alternate ease-in-out;
}

@keyframes pointer-move {
    0% { transform: translateX(-5px); }
    100% { transform: translateX(5px); }
}

/* ==========================================================================
   8. Pricing Calculator Section
   ========================================================================== */
.calculator-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.calculator-grid {
    gap: 40px;
    align-items: start;
}

.calculator-form-container {
    background-color: var(--color-bg-ivory);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--box-shadow);
}

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

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

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

.label-value {
    font-weight: 700;
    color: var(--color-rose-accent);
    font-size: 1rem;
}

/* Select Controls */
.form-control {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(61, 37, 32, 0.1);
    background-color: var(--color-bg-white);
    color: var(--color-chocolate);
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-rose-dark);
    box-shadow: 0 0 0 3px rgba(229, 164, 180, 0.15);
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-chocolate-muted);
    font-size: 0.8rem;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

/* Range Slider */
.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(61, 37, 32, 0.1);
    outline: none;
    appearance: none;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-rose-dark);
    border: 3px solid var(--color-bg-white);
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background-color: var(--color-rose-accent);
}

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

/* Plus/Minus Counter Input */
.counter-input {
    display: flex;
    align-items: center;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(61, 37, 32, 0.1);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    max-width: 180px;
}

.counter-btn {
    width: 50px;
    height: 48px;
    background-color: transparent;
    border: none;
    color: var(--color-chocolate-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.counter-btn:hover {
    background-color: rgba(61, 37, 32, 0.04);
    color: var(--color-chocolate);
}

.counter-input input {
    width: 80px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-chocolate);
    outline: none;
}

/* Segmented Pill Control for Frequency */
.segmented-control {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgba(61, 37, 32, 0.04);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(61, 37, 32, 0.02);
}

.segmented-control input[type="radio"] {
    display: none;
}

.segmented-control label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    cursor: pointer;
    border-radius: calc(var(--border-radius-sm) - 2px);
    transition: var(--transition-smooth);
    text-align: center;
}

.segmented-control label span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-chocolate-light);
}

.discount-badge {
    font-size: 0.65rem;
    background-color: var(--color-rose-accent);
    color: var(--color-bg-white);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 4px;
}

.segmented-control input[type="radio"]:checked + label {
    background-color: var(--color-bg-white);
    box-shadow: 0 2px 8px rgba(61, 37, 32, 0.05);
}

.segmented-control input[type="radio"]:checked + label span:first-child {
    color: var(--color-rose-accent);
    font-weight: 700;
}

.form-row {
    gap: 20px;
}

/* Summary Card styling */
.calculator-summary-container {
    display: flex;
    align-items: stretch;
}

.summary-card {
    width: 100%;
    background-color: var(--color-bg-ivory);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--color-rose);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
}

.summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.summary-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(61, 37, 32, 0.1);
    font-size: 0.95rem;
}

.summary-item-label {
    color: var(--color-chocolate-muted);
    font-weight: 500;
}

.summary-item-val {
    font-weight: 700;
    color: var(--color-chocolate);
}

.summary-price-box {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(229, 164, 180, 0.15);
    margin-bottom: 32px;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-chocolate-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-val-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 12px 0;
}

.price-val-container .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-rose-accent);
    margin-top: 4px;
}

.price-val-container .price-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-chocolate);
    line-height: 1;
}

.disclaimer-text {
    font-size: 0.72rem;
    color: var(--color-chocolate-muted);
    line-height: 1.4;
}

/* ==========================================================================
   9. Reviews Section
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
    background-color: var(--color-bg-ivory);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    padding: 36px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(61, 37, 32, 0.02);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-rose-light);
    color: var(--color-rose-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.user-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
}

.review-meta {
    font-size: 0.75rem;
    color: var(--color-chocolate-muted);
}

.review-card .stars {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.review-body {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-chocolate-light);
}

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

/* ==========================================================================
   10. FAQ Accordion Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(61, 37, 32, 0.08);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-bg-ivory);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-chocolate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-trigger i {
    transition: transform 0.3s ease;
    color: var(--color-rose-accent);
    font-size: 0.9rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    font-size: 0.9rem;
    color: var(--color-chocolate-light);
    border-top: 1px solid rgba(61, 37, 32, 0.03);
    padding-top: 16px;
}

.faq-item.active {
    border-color: var(--color-rose);
    background-color: var(--color-bg-white);
    box-shadow: 0 4px 15px rgba(229, 164, 180, 0.05);
}

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

/* ==========================================================================
   11. Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--color-chocolate);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 0 0;
}

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

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

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

.footer-logo .logo-title {
    color: var(--color-bg-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo .logo-subtitle {
    font-family: var(--font-script);
    color: var(--color-rose-light);
    font-size: 1.6rem;
    margin-top: -3px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-rose-dark);
    color: var(--color-bg-white);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-bg-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul a:hover {
    color: var(--color-rose-light);
    padding-left: 6px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list li i {
    color: var(--color-rose-light);
    margin-top: 4px;
}

.contact-list li a {
    transition: var(--transition-smooth);
}

.contact-list li a:hover {
    color: var(--color-bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* ==========================================================================
   12. Conversational Booking Chatbot Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 37, 32, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.chatbot-modal {
    width: 100%;
    max-width: 520px;
    height: 85vh;
    max-height: 680px;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(229, 164, 180, 0.15);
    position: relative;
}

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

.chatbot-header {
    background: linear-gradient(135deg, var(--color-chocolate), var(--color-chocolate-light));
    color: var(--color-bg-white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.bot-info h4 {
    color: var(--color-bg-white);
    font-size: 0.95rem;
    font-weight: 700;
}

.status-online {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.status-online .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #52C41A;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-bg-white);
}

/* Booking Form Elements */
.booking-form-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px); /* header height approx */
    overflow: hidden;
}

.booking-form-body {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--color-bg-ivory);
}

.booking-form-body::-webkit-scrollbar {
    width: 6px;
}

.booking-form-body::-webkit-scrollbar-track {
    background: rgba(61, 37, 32, 0.02);
}

.booking-form-body::-webkit-scrollbar-thumb {
    background: rgba(229, 164, 180, 0.4);
    border-radius: 3px;
}

.booking-form-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-rose-accent);
}

/* Returning User Banner */
.returning-user-banner {
    background-color: rgba(229, 164, 180, 0.12);
    border: 1px solid rgba(229, 164, 180, 0.3);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    color: var(--color-chocolate-dark);
    font-size: 0.82rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: banner-fade 0.4s ease forwards;
}

@keyframes banner-fade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.returning-user-banner i {
    color: var(--color-rose-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Booking Summary Card */
.booking-summary-card {
    background: linear-gradient(135deg, rgba(61, 37, 32, 0.02), rgba(61, 37, 32, 0.05));
    border: 1px solid rgba(61, 37, 32, 0.08);
    border-radius: var(--border-radius-md);
    padding: 16px;
}

.booking-summary-card h5 {
    color: var(--color-chocolate);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(61, 37, 32, 0.08);
    padding-bottom: 8px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    line-height: 1.4;
}

.summary-item .label {
    color: var(--color-chocolate-muted);
}

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

.summary-item.price-row {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed rgba(61, 37, 32, 0.1);
}

.summary-item.price-row .label {
    font-weight: 700;
    color: var(--color-chocolate-dark);
}

.summary-item.price-row .price-val {
    font-size: 1.15rem;
    color: var(--color-rose-dark);
    font-weight: 800;
}

/* Section Title */
.form-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-rose-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(229, 164, 180, 0.25);
    padding-bottom: 6px;
    margin-top: 8px;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.form-disclaimer {
    font-size: 0.72rem;
    color: var(--color-chocolate-muted);
    line-height: 1.4;
    font-style: italic;
    margin-top: -6px;
}

.form-desc {
    font-size: 0.8rem;
    color: var(--color-chocolate-muted);
    margin-top: -12px;
    margin-bottom: -4px;
    line-height: 1.4;
}

/* Modal Photo Dropzone */
.photo-upload-zone-modal {
    border: 2px dashed rgba(229, 164, 180, 0.4);
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.photo-upload-zone-modal:hover, .photo-upload-zone-modal.dragover {
    border-color: var(--color-rose-dark);
    background-color: rgba(229, 164, 180, 0.03);
    transform: scale(0.99);
}

.photo-upload-zone-modal .upload-icon {
    font-size: 2.2rem;
    color: var(--color-rose-accent);
}

.photo-upload-zone-modal span {
    font-size: 0.8rem;
    color: var(--color-chocolate-muted);
}

/* Form Footer */
.booking-form-footer {
    background-color: var(--color-bg-white);
    padding: 16px 24px;
    border-top: 1px solid rgba(61, 37, 32, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.btn-wa-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: var(--color-bg-white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-wa-booking:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Success Overlay */
.booking-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-white);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: overlay-fade 0.4s ease forwards;
}

@keyframes overlay-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
}

.success-content .success-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    background-color: rgba(229, 164, 180, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes icon-pop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-chocolate-dark);
}

.success-content p {
    font-size: 0.9rem;
    color: var(--color-chocolate);
    line-height: 1.5;
}

/* ==========================================================================
   13. Review Submission Modal Layout
   ========================================================================== */
.review-modal-content {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: translateY(30px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(229, 164, 180, 0.15);
}

.modal-overlay.active .review-modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.4rem;
}

.modal-header .modal-close {
    color: var(--color-chocolate-muted);
}

.modal-header .modal-close:hover {
    color: var(--color-chocolate);
}

.stars-rating-input {
    display: flex;
    gap: 12px;
    font-size: 1.8rem;
    color: rgba(61, 37, 32, 0.1);
    cursor: pointer;
}

.stars-rating-input i {
    transition: var(--transition-smooth);
}

.stars-rating-input i.active {
    color: var(--color-gold);
}

/* ==========================================================================
   14. Responsive Layout Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .main-header {
        padding: 0 !important; /* Keep mobile header compact at exactly 80px */
    }
    
    .main-header.scrolled {
        padding: 0 !important;
    }

    .logo-svg {
        width: 90px;
        height: 54px;
    }

    .logo-title {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 1.65rem;
        margin-top: -3px;
    }

    .grid-2 {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 2.4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 48px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-card-container {
        justify-content: center;
    }
    
    .hero-glass-card {
        max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .before-after-slider {
        height: 320px;
    }
    
    .placeholder-details {
        max-width: 280px;
        padding: 16px;
    }
    
    .placeholder-details i {
        font-size: 1.8rem;
    }
    
    .placeholder-details p {
        font-size: 0.85rem;
    }
    
    .segmented-control {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .grid-2-sm {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .calculator-form-container, .summary-card {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .chatbot-modal {
        height: 100vh;
        max-height: 100%;
        border-radius: 0;
    }
    
    .review-modal-content {
        padding: 24px;
        border-radius: var(--border-radius-md);
    }
    /* Custom Checkbox */
    .checkbox-group {
        margin-top: 24px;
        padding-top: 16px;
        border-top: 1px solid rgba(61, 37, 32, 0.05);
    }

    .custom-checkbox-label {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--color-chocolate);
        user-select: none;
    }

    .custom-checkbox-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkmark {
        height: 24px;
        width: 24px;
        background-color: var(--color-bg-white);
        border: 2px solid var(--color-chocolate-light);
        border-radius: 6px;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-checkbox-label:hover input ~ .checkmark {
        border-color: var(--color-rose-dark);
    }

    .custom-checkbox-label input:checked ~ .checkmark {
        background-color: var(--color-rose-dark);
        border-color: var(--color-rose-dark);
    }

    .checkmark:after {
        content: "";
        display: none;
        width: 6px;
        height: 12px;
        border: solid white;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
        margin-bottom: 2px;
    }

    .custom-checkbox-label input:checked ~ .checkmark:after {
        display: block;
    }
}

/* ==========================================================================
   9. New Calculator Custom Components (Extras Grid & Photo Upload)
   ========================================================================== */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

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

.extra-card {
    position: relative;
    cursor: pointer;
    display: block;
    height: 100%;
}

.extra-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.extra-card-content {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-chocolate-light);
    border-radius: 12px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-chocolate);
    transition: var(--transition-smooth);
    min-height: 120px;
    height: 100%;
    box-sizing: border-box;
}

.extra-card-content i {
    font-size: 1.5rem;
    color: var(--color-rose);
    transition: var(--transition-smooth);
}

/* Hover & Active States */
.extra-card:hover .extra-card-content {
    border-color: var(--color-rose);
    background-color: rgba(217, 165, 179, 0.05);
}

.extra-checkbox:checked + .extra-card-content {
    border-color: var(--color-gold);
    background-color: rgba(198, 166, 100, 0.08);
    box-shadow: 0 4px 12px rgba(198, 166, 100, 0.15);
}

.extra-checkbox:checked + .extra-card-content i {
    color: var(--color-gold);
    transform: scale(1.1);
}

/* Photo Upload Zone Styles */
.upload-zone {
    border: 2px dashed var(--color-rose);
    background-color: rgba(217, 165, 179, 0.03);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--color-gold);
    background-color: rgba(198, 166, 100, 0.05);
    box-shadow: 0 4px 16px rgba(198, 166, 100, 0.1);
}

.upload-icon {
    font-size: 2.2rem;
    color: var(--color-rose);
    transition: var(--transition-smooth);
}

.upload-zone:hover .upload-icon {
    color: var(--color-gold);
    transform: translateY(-4px);
}

.upload-text {
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--color-chocolate);
}

/* Upload Previews */
.upload-preview-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.upload-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--color-chocolate-light);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview-item .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(61, 37, 32, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.upload-preview-item .remove-btn:hover {
    background: rgba(217, 165, 179, 0.95);
    transform: scale(1.1);
}

/* Visually dim frequency discount badges when first time is active */
#frequency-control-wrapper.first-time-active .discount-badge {
    opacity: 0.5;
    background-color: var(--color-chocolate-light) !important;
    color: var(--color-chocolate-muted) !important;
    text-decoration: line-through;
}

/* Alert Box (Move-out warnings) */
.alert-box {
    background-color: rgba(229, 164, 180, 0.1);
    border-left: 4px solid var(--color-rose-accent);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
}

.alert-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.alert-icon {
    font-size: 1.25rem;
    color: var(--color-rose-accent);
    margin-top: 2px;
}

.alert-text strong {
    display: block;
    color: var(--color-chocolate);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.alert-text p {
    color: var(--color-chocolate-muted);
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Grid of 2 columns that stays fixed on all devices (no mobile stacking) */
.grid-2-fixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.includes-note {
    font-size: 0.85rem;
    color: var(--color-leaf-dark);
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

/* 3 columns on desktop, 2 columns on mobile/tablet */
.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
}

.org-grid .form-group {
    margin-bottom: 0;
}

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




