/* ===== Services Page-Specific Styles ===== */

/* Hero (services variant — shorter, centered) */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2.5rem 4rem;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--sandstone) 0%, #DED5C8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 166, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(127, 166, 147, 0.2);
    color: var(--eucalyptus);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal-green);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.scroll-indicator {
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Page Layout */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Larger desktop screens */
@media (min-width: 1400px) {
    .page-container {
        max-width: 1600px;
        grid-template-columns: 1fr 420px;
    }

    .pricing-calculator {
        width: 420px;
    }
}

/* Desktop form input refinement */
@media (min-width: 768px) {
    input, textarea, select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

/* Medium screens - 2-column bundle layout */
@media (max-width: 1100px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .bundle-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-content {
    min-width: 0;
}

/* Base Package Section */
.base-package-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--eucalyptus);
}

.base-package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.base-package-icon {
    margin-bottom: 1rem;
    color: var(--eucalyptus);
}

.base-package-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.base-package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--eucalyptus);
    font-weight: 600;
    margin: 1rem 0;
}

.always-included-badge {
    display: inline-block;
    background-color: var(--eucalyptus);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    position: relative;
}

.always-included-badge::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid white;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.always-included-badge:hover {
    background-color: var(--charcoal-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 166, 147, 0.3);
}

.always-included-badge:hover::after {
    transform: translateY(2px);
}

.base-features {
    list-style: none;
    margin-bottom: 2rem;
}

.base-features li {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.base-features li:last-child {
    border-bottom: none;
}

.base-features li::before {
    content: "\2713";
    color: var(--eucalyptus);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Property Size Pricing */
.property-pricing {
    background-color: var(--sandstone);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.property-pricing h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: var(--charcoal-green);
}

.property-pricing h3 + p {
    margin-bottom: 1.75rem !important;
}

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

.pricing-option {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: var(--eucalyptus);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(127, 166, 147, 0.2);
    background-color: rgba(127, 166, 147, 0.05);
}

.pricing-option.selected {
    border-color: var(--eucalyptus);
    background-color: rgba(127, 166, 147, 0.1);
}

.pricing-option input[type="radio"] {
    display: none;
}

.property-size {
    font-weight: 700;
    color: var(--charcoal-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.property-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--eucalyptus);
    font-weight: 600;
}

/* Guest Count Section */
.guest-count-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--light-gray);
}

.guest-count-section h4 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal-green);
}

.guest-count-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.guest-count-option {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.guest-count-option:hover {
    border-color: var(--eucalyptus);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 166, 147, 0.15);
}

.guest-count-option.selected {
    border-color: var(--eucalyptus);
    background-color: rgba(127, 166, 147, 0.1);
}

.guest-count-option input[type="radio"] {
    display: none;
}

.guest-count-label {
    font-weight: 700;
    color: var(--charcoal-green);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.guest-count-loads {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Linen Service Section */
.linen-service-section {
    margin-top: 1.5rem;
}

.linen-service-toggle {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--eucalyptus);
    cursor: pointer;
    transition: all 0.3s ease;
}

.linen-service-toggle:hover {
    box-shadow: 0 4px 12px rgba(127, 166, 147, 0.15);
}

.linen-service-toggle input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--eucalyptus);
    flex-shrink: 0;
}

.linen-service-content {
    flex: 1;
}

.linen-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.linen-service-title {
    font-weight: 700;
    color: var(--charcoal-green);
    font-size: 1.05rem;
}

.linen-service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--eucalyptus);
    font-weight: 600;
}

.linen-service-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Hidden until size selected */
.hidden-until-size-selected {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, max-height 0.6s ease;
}

.hidden-until-size-selected.revealed {
    opacity: 1;
    max-height: 1000px;
    overflow: visible;
    pointer-events: auto;
}

/* Hidden until property size selected */
.hidden-until-selected {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, max-height 0.6s ease;
}

.hidden-until-selected.revealed {
    opacity: 1;
    max-height: 5000px;
    overflow: visible;
    pointer-events: all;
}

/* Hidden until frequency selected */
.hidden-until-frequency {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, max-height 0.6s ease;
}

.hidden-until-frequency.revealed {
    opacity: 1;
    max-height: 8000px;
    overflow: visible;
    pointer-events: all;
}

/* Same-Day Surcharge Note */
/* What's Included Toggle */
.whats-included-toggle {
    margin-top: 1.5rem;
}

.whats-included-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(127, 166, 147, 0.15), rgba(127, 166, 147, 0.08));
    border: 2px solid var(--eucalyptus);
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--eucalyptus);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whats-included-btn:hover {
    background: rgba(127, 166, 147, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 166, 147, 0.2);
}

.whats-included-btn svg:first-child {
    flex-shrink: 0;
}

.whats-included-btn .toggle-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.whats-included-btn.expanded .toggle-arrow {
    transform: rotate(180deg);
}

.whats-included-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.whats-included-content.expanded {
    max-height: 600px;
    padding-top: 1rem;
}

.whats-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whats-included-list li {
    padding: 0.75rem 1rem;
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--eucalyptus);
    font-size: 0.95rem;
    line-height: 1.5;
}

.whats-included-list li strong {
    color: var(--eucalyptus);
    display: block;
    margin-bottom: 0.25rem;
}

/* Bundle Card What's Included */
.bundle-whats-included {
    margin: 1rem 0;
}

.bundle-whats-included-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(127, 166, 147, 0.1);
    border: 1px solid var(--eucalyptus);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eucalyptus);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bundle-whats-included-btn:hover {
    background: rgba(127, 166, 147, 0.15);
}

.bundle-whats-included-btn svg:first-child {
    flex-shrink: 0;
}

.bundle-whats-included-btn .toggle-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.bundle-whats-included-btn.expanded .toggle-arrow {
    transform: rotate(180deg);
}

.bundle-whats-included-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.bundle-whats-included-content.expanded {
    max-height: 400px;
    padding-top: 0.75rem;
}

.bundle-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundle-features-list li {
    padding: 0.5rem 0.75rem;
    background: rgba(127, 166, 147, 0.05);
    margin-bottom: 0.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    padding-left: 2rem;
}

.bundle-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--eucalyptus);
    font-weight: 700;
}

.same-day-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(194, 156, 107, 0.15), rgba(194, 156, 107, 0.08));
    border-left: 4px solid var(--bronze);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--charcoal-green);
    font-weight: 600;
}

.same-day-note svg {
    flex-shrink: 0;
    color: var(--bronze);
}

/* Frequency Selector */
.frequency-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.frequency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.frequency-option {
    background-color: var(--sandstone);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.frequency-option:hover {
    border-color: var(--eucalyptus);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(127, 166, 147, 0.2);
}

.frequency-option.selected {
    border-color: var(--eucalyptus);
    background-color: rgba(127, 166, 147, 0.1);
}

.frequency-option input[type="radio"] {
    display: none;
}

.frequency-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--eucalyptus);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.frequency-unit {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Bundles Section */
.bundles-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.bundle-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    cursor: pointer;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--eucalyptus);
}

.bundle-card.featured {
    border-color: var(--eucalyptus);
    position: relative;
}

.bundle-badge {
    background-color: var(--eucalyptus);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.bundle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bundle-pricing {
    margin: 1.5rem 0;
}

.bundle-regular {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.bundle-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--eucalyptus);
    font-weight: 600;
    display: block;
}

.bundle-savings {
    color: var(--bronze);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.bundle-includes {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.bundle-includes li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.bundle-includes li:last-child {
    border-bottom: none;
}

.bundle-includes li::before {
    content: "\2713  ";
    color: var(--eucalyptus);
    font-weight: 700;
    margin-right: 0.5rem;
}

.btn-bundle {
    background-color: var(--eucalyptus);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.btn-bundle:hover {
    background-color: var(--charcoal-green);
    transform: translateY(-2px);
}

.bundle-monthly {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.75rem;
    min-height: 1.2em;
}

/* Package Builder */
.builder-section {
    margin-bottom: 3rem;
}

.addon-category {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.category-header {
    background: linear-gradient(135deg, var(--sandstone), #DED5C8);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #DED5C8, var(--sandstone));
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    display: flex;
    align-items: center;
    color: var(--eucalyptus);
}

.category-title h3 {
    font-size: 1.6rem;
    margin: 0;
}

.category-count {
    background-color: rgba(127, 166, 147, 0.2);
    color: var(--eucalyptus);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.category-expand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    animation: pulse 2s ease-in-out 3;
}

.addon-category.expanded .category-expand {
    transform: rotate(180deg);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-3px) scale(1.1);
        opacity: 0.8;
    }
}

.category-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    padding: 1rem 2rem 0;
    margin: 0;
    font-style: italic;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.addon-category.expanded .category-content {
    max-height: 2000px;
}

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

.addon-item {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.addon-item:hover {
    border-color: var(--eucalyptus);
    box-shadow: 0 4px 15px rgba(127, 166, 147, 0.15);
    transform: translateY(-2px);
}

.addon-item.selected {
    border-color: var(--eucalyptus);
    background-color: rgba(127, 166, 147, 0.08);
    box-shadow: 0 2px 8px rgba(127, 166, 147, 0.15);
}

.addon-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.addon-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--eucalyptus);
    flex-shrink: 0;
    pointer-events: none;
}

.addon-info {
    flex: 1;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.addon-name {
    font-weight: 700;
    color: var(--charcoal-green);
    font-size: 1.05rem;
}

.addon-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--eucalyptus);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.addon-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Addon Frequency Selector */
.addon-frequency-selector {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--light-gray);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    animation: slideDown 0.3s ease;
}

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

.addon-item.selected .addon-frequency-selector {
    display: flex;
}

.addon-frequency-selector label {
    font-size: 0.85rem;
    color: var(--eucalyptus);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.freq-btn {
    padding: 0.6rem 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background-color: white;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    -webkit-tap-highlight-color: rgba(127, 166, 147, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.freq-btn:hover {
    border-color: var(--eucalyptus);
    background-color: rgba(127, 166, 147, 0.05);
    transform: translateY(-1px);
}

.freq-btn.active {
    border-color: var(--eucalyptus);
    background-color: var(--eucalyptus);
    color: white;
    box-shadow: 0 2px 8px rgba(127, 166, 147, 0.3);
}

.freq-btn:active {
    transform: translateY(0);
}

.frequency-price-preview {
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, rgba(127, 166, 147, 0.08), rgba(127, 166, 147, 0.03));
    border-left: 3px solid var(--eucalyptus);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--eucalyptus);
    text-align: right;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.frequency-price-preview:empty {
    display: none;
}

/* Pricing Calculator Sidebar */
.pricing-calculator {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--eucalyptus);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transition: box-shadow 0.3s ease;
}

@keyframes calculatorPulse {
    0% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); }
    50% { box-shadow: 0 4px 30px rgba(127, 166, 147, 0.4); }
    100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); }
}

.pricing-calculator.updated {
    animation: calculatorPulse 0.6s ease;
}

.calculator-header {
    text-align: center;
    padding: 0 0 1.5rem 0;
    margin-bottom: 0;
    border-bottom: 2px solid var(--light-gray);
}

.calculator-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.calculator-step {
    margin-bottom: 0;
    padding: 1.25rem;
    border-left: 3px solid var(--eucalyptus);
    position: relative;
    background-color: white;
    transition: all 0.3s ease;
}

.calculator-step:nth-child(2) {
    background-color: rgba(214, 204, 189, 0.15);
    border-left-color: var(--bronze);
}

.calculator-step:nth-child(3) {
    background-color: white;
    border-left-color: var(--eucalyptus);
}

.calculator-step:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
}

.calculator-step-label {
    font-weight: 700;
    color: var(--charcoal-green);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calculator-step-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    flex-shrink: 0;
}

.calculator-line-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.calculator-line-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--text-gray);
    font-size: 0.95rem;
    flex: 1;
}

.item-price {
    font-weight: 600;
    color: var(--charcoal-green);
    font-size: 0.95rem;
    text-align: right;
}

.item-price-dual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.price-unit {
    font-weight: 600;
    color: var(--charcoal-green);
    font-size: 0.85rem;
}

.price-monthly {
    font-size: 0.75rem;
    color: var(--eucalyptus);
    font-weight: 700;
}

.calculator-subtotal {
    margin-top: 0;
    padding-top: 1.5rem;
    padding-left: 0;
    padding-right: 0;
    border-top: 2px solid var(--charcoal-green);
}

.subtotal-section {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 3px solid var(--eucalyptus);
    box-shadow: 0 2px 8px rgba(127, 166, 147, 0.08);
}

.subtotal-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.subtotal-label {
    font-weight: 600;
    color: var(--eucalyptus);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.subtotal-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--charcoal-green);
    font-weight: 600;
}

.subtotal-breakdown {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.4;
}

.subtotal-extras {
    padding: 1rem;
    background-color: rgba(214, 204, 189, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--charcoal-green);
    border-left: 4px solid var(--bronze);
}

.subtotal-extras .extras-line {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-weight: 600;
}

.subtotal-extras .extras-heading {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--eucalyptus);
}

.subtotal-extras .extras-line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.calculator-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--eucalyptus);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.6rem;
    background-color: rgba(127, 166, 147, 0.08);
    border-radius: 4px;
    display: inline-block;
}

.calculator-cta {
    margin-top: 1.5rem;
}

.mobile-calc-toggle {
    display: none;
}

.btn-quote {
    background: linear-gradient(135deg, var(--eucalyptus), var(--charcoal-green));
    color: white;
    padding: 1.25rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
}

.btn-quote:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 166, 147, 0.3);
}

.btn-quote:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-quote.loading::before,
.btn-quote-inline.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

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

/* Inline Get Quote CTA */
.builder-cta {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(127, 166, 147, 0.08), rgba(127, 166, 147, 0.15));
    border-radius: 20px;
    border: 2px dashed var(--eucalyptus);
}

.builder-cta-text {
    font-size: 1.3rem;
    color: var(--charcoal-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.btn-quote-inline {
    background: linear-gradient(135deg, var(--eucalyptus), var(--charcoal-green));
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-quote-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 166, 147, 0.4);
}

.empty-cart-message {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Hidden until quote requested */
.hidden-until-quote {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, max-height 0.6s ease;
}

.hidden-until-quote.revealed {
    opacity: 1;
    max-height: 5000px;
    overflow: visible;
    pointer-events: all;
}

/* Services page contact section */
.contact-section {
    background: linear-gradient(135deg, var(--sandstone), #DED5C8);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin-top: 4rem;
}

.contact-section .contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-section .contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-section .contact-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.contact-section .contact-form {
    max-width: 700px;
    margin: 0 auto;
}

/* ── Step Indicator ── */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.step-connector {
    width: 40px;
    height: 2px;
    background-color: var(--light-gray);
    margin: 0 0.75rem;
}

.step-connector.completed {
    background-color: var(--eucalyptus);
}

.step-completed .step-number {
    background-color: var(--eucalyptus);
    color: white;
}

.step-completed .step-label {
    color: var(--eucalyptus);
}

.step-active .step-number {
    background-color: var(--charcoal-green);
    color: white;
    transform: scale(1.1);
}

.step-active .step-label {
    color: var(--charcoal-green);
}

/* ── Package Summary ── */
.package-summary {
    background: white;
    border: 2px solid var(--eucalyptus);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.package-summary h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--charcoal-green);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.summary-line-price {
    font-weight: 600;
    color: var(--charcoal-green);
    white-space: nowrap;
    margin-left: 1rem;
}

.summary-details {
    font-size: 0.85rem;
    color: var(--text-gray);
    padding-left: 1rem;
    margin-top: -0.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.summary-addons-empty {
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--charcoal-green);
}

.summary-total-label {
    font-weight: 700;
    color: var(--charcoal-green);
    font-size: 1rem;
}

.summary-total-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--eucalyptus);
    font-weight: 600;
}

.summary-section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--eucalyptus);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--eucalyptus);
}

.summary-section-heading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--eucalyptus);
    border-radius: 2px;
    flex-shrink: 0;
}

.summary-recurring-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--charcoal-green);
    font-weight: 700;
    color: var(--charcoal-green);
}

.summary-recurring-total .summary-total-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--eucalyptus);
    font-weight: 600;
}

.summary-edit-btn {
    background: none;
    border: none;
    color: var(--eucalyptus);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0.5rem 0 0;
    font-family: 'Lato', sans-serif;
}

.summary-edit-btn:hover {
    color: var(--charcoal-green);
}

/* ── Pricing Disclaimer ── */
.pricing-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9f7;
    border-left: 4px solid var(--eucalyptus);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-disclaimer svg {
    flex-shrink: 0;
    color: var(--eucalyptus);
    margin-top: 0.1rem;
}

.pricing-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.pricing-disclaimer strong {
    color: var(--charcoal-green);
}

/* Hide carousel dots and swipe hint on desktop */
.carousel-dots {
    display: none;
}

.swipe-hint {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease;
}

/* ===== Services Responsive ===== */
@media (max-width: 1200px) {
    .page-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 90px;
    }

    .pricing-calculator {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        max-height: none;
        border-radius: 0;
        z-index: 900;
        padding: 0.5rem 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border-top: 2px solid var(--eucalyptus);
    }

    .pricing-calculator .calculator-step,
    .pricing-calculator .calculator-header,
    .pricing-calculator .calculator-cta,
    .pricing-calculator .subtotal-extras,
    .pricing-calculator .subtotal-breakdown {
        display: none;
    }

    .pricing-calculator .calculator-subtotal {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .pricing-calculator .subtotal-section {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing-calculator .subtotal-line {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing-calculator .subtotal-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--charcoal-green);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pricing-calculator .subtotal-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--eucalyptus);
    }

    .pricing-calculator .subtotal-section {
        padding: 0.75rem 1rem;
    }

    .pricing-calculator .calculator-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .mobile-calc-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: var(--eucalyptus);
        color: white;
        border: none;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        min-width: 28px;
        cursor: pointer;
        transition: transform 0.3s ease;
        order: 999;
        flex-shrink: 0;
        position: relative;
    }

    .mobile-calc-toggle::after {
        content: '';
        position: absolute;
        top: -2px;
        right: -2px;
        width: 8px;
        height: 8px;
        background: var(--bronze);
        border-radius: 50%;
        border: 2px solid white;
    }

    .pricing-calculator.expanded .mobile-calc-toggle::after {
        display: none;
    }

    .mobile-calc-toggle svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
        animation: pulse 2s ease-in-out infinite;
    }

    /* Expanded state */
    .pricing-calculator.expanded {
        max-height: 75vh;
        overflow-y: auto;
        padding: 0 1.25rem 1.5rem;
    }

    .pricing-calculator.expanded .calculator-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-calculator.expanded .calculator-step {
        display: block;
        padding: 1rem;
        margin-bottom: 0;
    }

    .pricing-calculator.expanded .calculator-header p,
    .pricing-calculator.expanded .calculator-cta {
        display: block;
    }

    .pricing-calculator.expanded .calculator-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--light-gray);
        text-align: center;
    }

    .pricing-calculator.expanded .calculator-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .pricing-calculator.expanded .calculator-subtotal {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid var(--charcoal-green);
    }

    .pricing-calculator.expanded .mobile-calc-toggle {
        width: 100%;
        border-radius: 0;
        height: 44px;
        gap: 0.5rem;
        background: var(--sandstone);
        color: var(--charcoal-green);
        font-family: 'Lato', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: sticky;
        top: 0;
        z-index: 1;
        margin: 0 -1.25rem 1rem;
        order: 0;
        width: calc(100% + 2.5rem);
        border-bottom: 1px solid var(--light-gray);
    }

    .pricing-calculator.expanded .mobile-calc-toggle svg {
        transform: rotate(180deg);
        animation: none;
    }

    .mobile-calc-toggle-label {
        display: none;
    }

    .pricing-calculator.expanded .mobile-calc-toggle-label {
        display: inline;
    }

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

    .frequency-option {
        padding: 1rem 0.5rem;
    }

    .frequency-label {
        font-size: 1.6rem;
    }

    .addon-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    /* Bundle carousel on mobile */
    .bundles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .bundles-grid::-webkit-scrollbar {
        display: none;
    }

    .bundles-grid .bundle-card {
        min-width: 85vw;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    /* Dot indicators */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--light-gray);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background-color: var(--eucalyptus);
        transform: scale(1.3);
    }

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

    .pricing-option {
        padding: 1rem 0.75rem;
        border-radius: 8px;
        border-width: 2px;
        min-height: 80px;
    }

    .pricing-option.selected {
        background-color: white;
        border-color: var(--eucalyptus);
    }

    .property-price {
        font-size: 1.4rem;
    }

    .property-size {
        font-size: 0.9rem;
    }

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

    .guest-count-option {
        padding: 0.75rem;
    }

    .guest-count-label {
        font-size: 0.9rem;
    }

    .linen-service-toggle {
        padding: 1rem;
    }

    .linen-service-title {
        font-size: 0.95rem;
    }

    .linen-service-price {
        font-size: 1.3rem;
    }

    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0.75rem 1.25rem;
        background: var(--eucalyptus);
        border-radius: 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        opacity: 1;
        transition: opacity 0.6s ease;
    }

    .swipe-hint.faded {
        opacity: 0;
        pointer-events: none;
    }

    .swipe-hint-text {
        font-size: 0.85rem;
        font-weight: 600;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .swipe-hint-arrow {
        color: white;
        animation: nudge 1.5s ease-in-out infinite;
    }

    @keyframes nudge {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(6px); }
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 2.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .page-container {
        padding: 2rem 1rem;
    }

    .base-package-section {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        border-width: 1.5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .base-package-header h2 {
        font-size: 2rem;
    }

    .base-package-price {
        font-size: 2.2rem;
    }

    .base-features li {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .base-features li::before {
        font-size: 1.2rem;
    }

    .property-pricing {
        padding: 1.25rem;
    }

    .property-pricing h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .frequency-section {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
        margin-bottom: 2rem;
    }

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

    .frequency-label {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .bundle-card h3 {
        font-size: 1.4rem;
    }

    .bundle-price {
        font-size: 1.6rem;
    }

    .bundle-card {
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    }

    .bundle-card.featured {
        border-width: 2px;
    }

    .bundle-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.75rem;
    }

    .category-header {
        padding: 0.875rem 1rem;
    }

    .category-title h3 {
        font-size: 1.2rem;
    }

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

    .addon-list {
        padding: 1rem;
        gap: 1rem;
    }

    .addon-item {
        padding: 1rem;
        position: relative;
        padding-right: 3rem;
    }

    .addon-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .addon-item.selected::before {
        content: '✓';
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 24px;
        height: 24px;
        background: var(--eucalyptus);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1rem;
    }

    .addon-name {
        font-size: 0.95rem;
    }

    .addon-price {
        font-size: 1.1rem;
    }

    .addon-description {
        font-size: 0.82rem;
    }

    .addon-frequency-selector label {
        font-size: 0.8rem;
    }

    .addon-frequency-selector {
        display: none;
        flex-direction: column;
    }

    .addon-item.selected .addon-frequency-selector {
        display: flex !important;
    }

    .frequency-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .freq-btn {
        font-size: 0.8rem;
        padding: 0.7rem 0.6rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .frequency-price-preview {
        font-size: 0.85rem;
        padding: 0.45rem 0.6rem;
    }

    .contact-section {
        border-radius: 18px;
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }

    .contact-section .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-section .contact-header p {
        font-size: 0.95rem;
    }

    .step-label {
        font-size: 0.65rem;
        max-width: 50px;
        text-align: center;
        line-height: 1.1;
    }

    .step-connector {
        width: 16px;
        margin: 0 0.25rem;
    }
}

/* Show abbreviated labels on mid-size phones */
@media (min-width: 480px) and (max-width: 768px) {
    .step-label {
        display: block !important;
        font-size: 0.7rem;
    }

    .step-connector {
        width: 20px;
        margin: 0 0.5rem;
    }

    .package-summary {
        padding: 1.25rem;
    }

    .summary-total-amount {
        font-size: 1.6rem;
    }
}

/* Tablet-specific styling */
@media (min-width: 768px) and (max-width: 1024px) {
    .page-container {
        padding: 3rem 2rem 90px;
    }

    .base-package-section {
        padding: 2rem;
    }

    .addon-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Very small phones */
@media (max-width: 375px) {
    .pricing-grid {
        gap: 0.5rem;
    }

    .property-size {
        font-size: 0.75rem;
        line-height: 1.1;
        min-height: 36px;
    }

    .property-price {
        font-size: 1.3rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .bundles-grid .bundle-card {
        min-width: 90vw;
        padding: 1rem;
    }

    .bundle-card h3 {
        font-size: 1.3rem;
    }

    .bundle-price {
        font-size: 1.5rem;
    }
}
