/* =============================================
   Zaffre Beauty Salon - Earthy Theme
   Primary Accent Color: #9d6942
   ============================================= */

:root {
    /* Earthy Color Palette */
    --primary: #9d6942;
    --primary-dark: #6d5639;
    --primary-light: #a68b6a;
    --primary-lighter: #d4c4b0;
    
    --secondary: #5c7c5c;
    --secondary-light: #7a9a7a;
    
    --accent: #c9a66b;
    --accent-light: #e5d4b3;
    
    --neutral-dark: #3d3d3d;
    --neutral: #6b6b6b;
    --neutral-light: #9a9a9a;
    
    --background: #faf8f5;
    --background-alt: #f5f0e8;
    --white: #ffffff;
    
    --text-dark: #2d2d2d;
    --text: #4a4a4a;
    --text-light: #fff;
    
    --border: #e5ddd3;
    --shadow: rgba(139, 110, 73, 0.1);
    --shadow-dark: rgba(139, 110, 73, 0.2);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /*font-family: var(--font-body);*/
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: .5rem;
    padding-top: .5rem;
    font-variant: small-caps;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    background-color: var(--primary);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand .brand-icon {
    color: var(--primary);
}

.nav-link {
    font-weight: 600;
    color: var(--text-light) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
}

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

.text-primary {
    --bs-text-opacity: 1;
    color: #9d6942 !important;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background-image: url(/img/homescreen_hero.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: 16 / 9;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    margin-left: 10px;
    max-width: 500px; /* Limit width to prevent text from flowing across face */
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-family: Garamond;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.1rem; /* Reduced from 1.25rem */
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 200px; /* Reduced from 400px to keep text away from face */
    line-height: 1.6; /* Improved readability */
}
.method-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    height: 28px;
    width: auto;
    display: block;
}



/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem; /* Slightly smaller on tablets */
        max-width: 300px;
        margin-top: -60px;
    }
    .btn-lg {
        padding: .4rem 1rem;
        font-size: .75rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: left;
        margin-left: -15px;
        max-width: 350px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem; /* Smaller on mobile */
        max-width: 150px;
        margin-top:-60px;
    }
    .btn-lg {
        padding: .5rem 2rem;
        font-size: .75rem;
    }
}

/* Header Top with Phone */
.header-top {
    background: var(--white);
    /* padding: 0.75rem 0;*/
    border-bottom: 1px solid var(--border);
}

.header-phone {
    color: var(--neutral);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-phone:hover {
    color: var(--primary);
}

.header-phone i {
    font-size: 1.2rem;
}

/* Section Titles */
    .section-title {
    font-size: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card .service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Staff Cards */
.staff-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.staff-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-placeholder {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-placeholder span {
    font-size: 2.5rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.staff-info {
    padding: 1.5rem;
    text-align: center;
}

.staff-info h4 {
    margin-bottom: 0.5rem;
}

.staff-specialties {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Staff Profile Cards */
.staff-profile-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.staff-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.staff-profile-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
}

.staff-avatar span {
    font-size: 2.5rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.staff-profile-info {
    padding: 1.5rem;
}

.staff-profile-info h3 {
    margin-bottom: 0.5rem;
}

.staff-specialties-tag {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.staff-bio {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags li {
    background: var(--background-alt);
    color: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.feature-card h4 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text);
}

/* CTA Section */
.cta-section {
    background-image: url(/img/genericBG.png);
    color: var(--white);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: 16 / 9;
    height: auto;
    display: flex;
    align-items: flex-end; /* Align content to bottom */
    padding: 4rem 0 6rem 0; /* Add bottom padding */
}

.cta-section .container {
    width: 100%;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.cta-section .lead {
    opacity: 0.9;
}

/* Services Page */
.category-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-lighter);
}

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

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text);
    transition: all 0.3s ease;
}

.category-list li a:hover,
.category-list li.active a {
    background: var(--primary);
    color: var(--white);
}

.service-item-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-item-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.service-description {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text);
}

.service-thumb {
    
    margin-bottom: 30px;
}

.service-meta i {
    color: var(--primary);
}

/* Booking Wizard */
.booking-wizard {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.step.active .step-label {
    color: var(--primary);
    font-weight: 500;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Service Selection Cards */
.service-select-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.service-select-card:hover {
    border-color: var(--primary-light);
}

.service-select-card.selected {
    border-color: var(--primary);
    background: var(--background-alt);
}

.service-select-card .service-radio {
    display: none;
}

.service-select-info h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-select-info p {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-select-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.service-select-meta .price {
    font-weight: 600;
    color: var(--primary);
}

/* Stylist Selection Cards */
.stylist-select-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.stylist-select-card:hover {
    border-color: var(--primary-light);
}

.stylist-select-card.selected {
    border-color: var(--primary);
    background: var(--background-alt);
}

.stylist-select-card .staff-radio {
    display: none;
}

.stylist-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stylist-avatar span {
    font-size: 2rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.stylist-avatar.any {
    background: var(--secondary);
}

.stylist-avatar.any i {
    font-size: 2rem;
    color: var(--white);
}

.stylist-select-info h5 {
    margin-bottom: 0.5rem;
}

.stylist-select-info .specialties {
    font-size: 0.85rem;
    color: var(--text);
}

/* Time Slots */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary-light);
}

.time-slot.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Booking Summary */
.summary-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.summary-card h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-lighter);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    /* padding: 0.75rem 0;*/
}

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

.summary-item .value {
    font-weight: 500;
}

.summary-item.total {
    font-size: 1.25rem;
}

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

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.step-navigation .btn {
    min-width: 150px;
}

/* Category Header */
.category-header {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-lighter);
}

/* Auth Cards */
.auth-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px var(--shadow);
}

.auth-card h1 {
    font-size: 1.75rem;
}

/* Dashboard */
.dashboard-header h1 {
    font-size: 2rem;
}

.dashboard-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    overflow: hidden;
}

.dashboard-card .card-header {
    background: var(--background-alt);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.dashboard-card .card-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

/* Appointment Items */
.appointment-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: var(--background-alt);
    margin-bottom: 1rem;
}

.appointment-date {
    text-align: center;
    min-width: 60px;
}

.appointment-date .day {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.appointment-date .month {
    font-size: 0.85rem;
    color: var(--text);
    text-transform: uppercase;
}

.appointment-details {
    flex: 1;
}

.appointment-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.appointment-details p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

.appointment-status .badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary-lighter);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Confirmation Page */
.confirmation-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.confirmation-details {
    text-align: left;
    margin-top: 2rem;
}

.detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.detail-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-lighter);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    /* padding: 0.75rem 0;*/
}

.detail-row .label {
    color: var(--text);
}

.detail-row .value {
    font-weight: 500;
}

.detail-row.total {
    font-size: 1.25rem;
}

.detail-row.total .value {
    color: var(--primary);
    font-weight: 600;
}

.confirmation-notes {
    background: var(--background-alt);
    border-radius: 12px;
    padding: 1.5rem;
}

.confirmation-notes h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.confirmation-notes ul {
    margin: 0;
    padding-left: 1.25rem;
}

.confirmation-notes li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
    .site-footer {
    background: linear-gradient(70deg, #1b1346 0%, #63296f 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    
}

.site-footer h4,
.site-footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.site-footer h4 i {
    color: var(--primary-light);
}

.site-footer p {
    color: rgba(255,255,255,0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-light);
    margin-right: 0.75rem;
}

.site-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Background Classes */
.bg-light {
    background-color: var(--background-alt) !important;
}

/* Badge Colors */
.badge.bg-warning {
    background-color: #f0ad4e !important;
}

.badge.bg-primary {
    background-color: var(--primary) !important;
}

.badge.bg-success {
    background-color: var(--secondary) !important;
}

.badge.bg-secondary {
    background-color: var(--neutral) !important;
}

/* Form Controls */
.form-control {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-control-lg {
    padding: 1rem 1.25rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 5rem 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .booking-steps::before {
        display: none;
    }
    
    .step {
        flex: 0 0 48%;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .appointment-item {
        flex-wrap: wrap;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .header-phone {
        font-size: 0.95rem;
    }
    
    .header-top img {
        width: 200px !important;
    }
}
