* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8fafb;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%; /* Prevent text inflation on mobile */
    text-size-adjust: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.header-section {
    text-align: center;
    margin-bottom: 3rem;
}
h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.booking-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.form-step {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f1f5f9;
}
.form-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}
.step-description {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}
.property-type-toggle {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.property-type-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #0f172a;
}
.property-type-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafb;
}
.property-type-btn.selected {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}
.square-meterage-input {
    background: #f8fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.square-meterage-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-size: 0.95rem;
}
.square-meterage-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    color: #0f172a;
}
.square-meterage-input input:focus {
    outline: none;
    border-color: #0f172a;
}
.property-details {
    margin-top: 1.5rem;
}
.property-details.hidden {
    display: none;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.counter-item {
    background: #f8fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}
.counter-item:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}
.counter-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 0.95rem;
}
.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #0f172a;
    font-size: 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.counter-btn:hover {
    border-color: #0f172a;
    background: #0f172a;
    color: white;
}
.counter-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    min-width: 50px;
    text-align: center;
}
.service-options {
    display: grid;
    gap: 0.75rem;
}
.service-options.hidden {
    display: none;
}
.service-option {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.service-option:hover {
    border-color: #cbd5e1;
    background: #f8fafb;
}
.service-option.selected {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}
.service-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}
.service-option.selected .service-radio {
    border-color: white;
    background: white;
}
.service-option.selected .service-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f172a;
}
.service-content {
    flex: 1;
}
.service-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.service-description {
    font-size: 0.875rem;
    opacity: 0.8;
}
.date-time-grid {
    display: grid;
    gap: 2rem;
}
.date-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.date-btn {
    padding: 1rem 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}
.date-day {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.date-date {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}
.date-btn:hover {
    border-color: #0f172a;
    background: #f8fafb;
}
.date-btn.selected {
    background: #0f172a;
    border-color: #0f172a;
}
.date-btn.selected .date-day,
.date-btn.selected .date-date {
    color: white;
}
.date-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
    background: #f1f5f9;
}
.time-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}
.time-btn {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #0f172a;
}
.time-btn:hover {
    border-color: #0f172a;
    background: #f8fafb;
}
.time-btn.selected {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}
.custom-date-wrapper {
    margin-top: 1rem;
}
.custom-date-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.custom-date-btn:hover {
    border-color: #0f172a;
    background: #f8fafb;
}
.custom-date-btn.active {
    background: #0f172a;
    border-color: #0f172a;
    color: white;
}
.custom-date-input {
    display: none;
    margin-top: 0.75rem;
}
.custom-date-input.show {
    display: block;
}
.custom-date-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}
.custom-date-input input:focus {
    outline: none;
    border-color: #0f172a;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}
.optional-tag {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.875rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    color: #0f172a;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f172a;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.input-hint {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}
.reviews-section {
    margin: 3rem 0;
    background: #f8fafb;
    padding: 2rem;
    border-radius: 16px;
    margin-left: -1rem;
    margin-right: -1rem;
    overflow: hidden;
}
.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}
.reviews-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.reviews-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}
.reviews-container {
    width: 100%;
}
.review-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.review-card:hover {
    transform: translateY(-2px);
}
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.review-info {
    flex: 1;
    min-width: 0;
}
.review-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}
.review-text {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    white-space: normal;
    width: 100%;
}
.reviews-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}
.reviews-grid.show {
    display: grid;
}
.see-more-btn {
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    justify-content: center;
}
.see-more-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}
.see-more-btn i {
    transition: transform 0.3s ease;
}
.see-more-btn.expanded i {
    transform: rotate(180deg);
}
.submit-section {
    margin-top: 2rem;
}
.book-btn {
    width: 100%;
    padding: 1.25rem;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}
.book-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.book-btn:active {
    transform: translateY(0);
}
.book-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.security-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.success-message {
    display: none;
    text-align: center;
    padding: 3rem;
}
.success-message.show {
    display: block;
}
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}
.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.success-text {
    color: #64748b;
    font-size: 1.125rem;
}
.error-message {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.error-message.show {
    opacity: 1;
    max-height: 100px;
}
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    h1 {
        font-size: 2.25rem;
    }
    .booking-card {
        padding: 2rem 1.5rem;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .reviews-section {
        margin-left: 0;
        margin-right: 0;
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    .date-buttons {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    }
    .time-buttons {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    .review-card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    .review-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .review-name {
        font-size: 0.95rem;
    }
    .review-stars {
        font-size: 0.9rem;
    }
    .see-more-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        margin: 1.5rem auto 0;
    }
}
@media (max-width: 480px) {
    .reviews-section {
        padding: 1rem;
    }
    .review-card {
        padding: 1rem;
    }
    .review-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .review-text {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    .review-name {
        font-size: 0.9rem;
    }
    .reviews-title {
        font-size: 1.25rem;
    }
    .reviews-subtitle {
        font-size: 0.85rem;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 1025px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}
.hidden {
    display: none !important;
}