/* Mobile-first responsive design for Terapia e Bem Estar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B9A8B; /* Sage green */
    --secondary-color: #A8C8EC; /* Light blue */
    --accent-color: #D4B996; /* Beige */
    --background-color: #FAFAFA; /* Off-white */
    --text-dark: #4A4A4A; /* Dark gray */
    --text-light: #6B6B6B; /* Light gray */
    --earth-tone: #B8A082; /* Earthy tone */
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #7CB342;
    --warning-color: #FF8A65;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav a:hover, .nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(168, 200, 236, 0.1), rgba(139, 154, 139, 0.1));
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.professional-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.professional-photo {
    text-align: center;
}

.professional-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.professional-photo .placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.professional-details h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.professional-details p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 154, 139, 0.1);
}

/* Day Selector Styles */
.day-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.day-option {
    background: var(--white);
    border: 2px solid rgba(139, 154, 139, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 154, 139, 0.1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.day-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(139, 154, 139, 0.2);
    transform: translateY(-2px);
}

.day-option.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(139, 154, 139, 0.3);
}

.day-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Calendar */
.calendar {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 2rem;
}

.calendar-day {
    padding: 1rem;
    text-align: center;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #4CAF50;
    color: var(--white);
    font-weight: 600;
}

.calendar-day:hover {
    background-color: #45A049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.calendar-day.selected {
    background-color: #45A049;
    border-color: #45A049;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.calendar-day.unavailable {
    background-color: #9E9E9E;
    color: #FFFFFF;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #9E9E9E;
}

/* Time periods container */
.time-periods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.time-period {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.time-period h4 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
}

.time-slot {
    padding: 0.8rem 1rem;
    text-align: center;
    border: 2px solid #2196F3;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #2196F3;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.time-slot:hover {
    background-color: #1976D2;
    border-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.time-slot.selected {
    background-color: #1565C0;
    color: var(--white);
    border-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.time-slot.unavailable {
    background-color: #9E9E9E;
    color: #FFFFFF;
    cursor: not-allowed;
    border-color: #9E9E9E;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
}

.footer .logo-footer {
    display: inline-block;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
}

.footer .logo-footer img {
    height: 50px;
    width: auto;
    display: block;
}

/* Contact info */
.contact-info {
    background: linear-gradient(135deg, rgba(168, 200, 236, 0.1), rgba(139, 154, 139, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

/* Responsive design */
@media (min-width: 768px) {
    .professional-info {
        grid-template-columns: 300px 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav {
        gap: 2rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .time-slot {
        padding: 0.7rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .time-period {
        padding: 1rem;
    }
    
    .time-period h4 {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .professional-info {
        grid-template-columns: 350px 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-periods {
        gap: 1.5rem;
    }
}

/* New Homepage Styles */

/* Hero Main Section */
.hero-main {
    background: linear-gradient(135deg, rgba(139, 154, 139, 0.05), rgba(168, 200, 236, 0.05));
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Large CTA Button */
.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.btn-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 154, 139, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-bottom: 1rem;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 154, 139, 0.4);
}

.cta-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Professional Photo Main */
.professional-photo-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-container {
    position: relative;
    text-align: center;
}

.photo-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 154, 139, 0.2);
    margin: 0 auto 2rem auto;
    border: 6px solid var(--white);
}

.photo-initials {
    font-size: 4rem;
    color: var(--white);
    font-weight: bold;
}

.photo-real {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 154, 139, 0.2);
    margin: 0 auto 2rem auto;
    border: 6px solid var(--white);
    background: var(--white);
}

.photo-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.photo-overlay {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
}

.photo-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.photo-overlay p {
    color: var(--text-light);
    margin: 0.3rem 0;
    line-height: 1.5;
}

/* Save Link Section */
.save-link-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(139, 154, 139, 0.05), rgba(168, 200, 236, 0.05));
}

.save-link-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid var(--primary-color);
}

.save-link-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.save-link-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.save-link-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.install-steps {
    text-align: left;
    margin: 2rem 0;
}

.install-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.3rem;
}

.step-content strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.step-content ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.step-content li {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

.save-link-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.save-link-instruction {
    background: rgba(139, 154, 139, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.btn-save-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin: 1.5rem 0;
}

.btn-save-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-save-link:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.save-link-help {
    background: rgba(168, 200, 236, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    text-align: left;
    line-height: 1.8;
}

.save-link-help strong {
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Specialties */
.specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(139, 154, 139, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
}

.specialty-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.specialty-item h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 154, 139, 0.08), rgba(168, 200, 236, 0.08));
}

.contact-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.contact-note {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Services Quick Section */
.services-quick {
    padding: 4rem 0;
    background: var(--white);
}

.services-quick h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-quick-card {
    background: linear-gradient(135deg, rgba(139, 154, 139, 0.05), rgba(168, 200, 236, 0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.service-quick-card:hover {
    transform: translateY(-5px);
}

.service-quick-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-quick-card p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-quick-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 185, 150, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 185, 150, 0.4);
}

/* Responsive Design for New Homepage */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .cta-section {
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-text h2 {
        font-size: 2.8rem;
    }
    
    .btn-cta-large {
        font-size: 1.5rem;
        padding: 1.8rem 3.5rem;
    }
    
    .photo-placeholder {
        width: 320px;
        height: 320px;
    }
    
    .photo-real {
        width: 320px;
        height: 320px;
    }
    
    .photo-initials {
        font-size: 5rem;
    }
    
    /* Day Selector Responsive */
    .day-selector {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .day-option {
        padding: 1.2rem;
        min-height: 110px;
    }
}

/* Mobile Styles for Day Selector */
@media (max-width: 768px) {
    .day-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .day-option {
        padding: 1rem;
        min-height: 100px;
    }
    
    .day-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .day-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .day-selector {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .day-option {
        padding: 1.2rem;
        min-height: 80px;
        flex-direction: row;
        text-align: left;
    }
    
    .day-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 1rem;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Admin panel styles */
.admin-header {
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 0;
}

.admin-nav {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.admin-nav a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.admin-table tr:hover {
    background-color: rgba(139, 154, 139, 0.05);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-pending {
    background-color: rgba(255, 138, 101, 0.2);
    color: var(--warning-color);
}

.status-confirmed {
    background-color: rgba(124, 179, 66, 0.2);
    color: var(--success-color);
}

.status-cancelled {
    background-color: rgba(74, 74, 74, 0.2);
    color: var(--text-dark);
}

.status-completed {
    background-color: rgba(139, 154, 139, 0.2);
    color: var(--primary-color);
}

/* ============================================ */
/* RESPONSIVE ADMIN PANEL STYLES */
/* ============================================ */

/* Hamburger menu button - hidden by default on desktop */
.admin-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.admin-menu-toggle:hover {
    background-color: var(--secondary-color);
}

/* Admin navigation wrapper */
.admin-nav-wrapper {
    position: relative;
}

/* Responsive tables for admin panel */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

/* Action buttons in tables */
.admin-table .btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    margin: 0.2rem;
    display: inline-block;
}

/* Form grid for admin forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-grid-full {
    grid-column: 1 / -1;
}

/* Calendar responsive styles for admin */
.calendar-week-view {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.calendar-time-grid {
    display: grid;
    grid-template-columns: 80px repeat(7, minmax(100px, 1fr));
    gap: 5px;
    min-width: 800px;
}

/* Stats cards for dashboard */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.stat-card h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* ============================================ */
/* TABLET RESPONSIVE (768px - 1023px) */
/* ============================================ */
@media (max-width: 1023px) {
    .admin-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .admin-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .calendar-time-grid {
        grid-template-columns: 60px repeat(7, minmax(80px, 1fr));
        gap: 3px;
        font-size: 0.85rem;
    }
}

/* ============================================ */
/* MOBILE RESPONSIVE (< 768px) */
/* ============================================ */
@media (max-width: 767px) {
    /* Show hamburger menu button on mobile */
    .admin-menu-toggle {
        display: block !important;
        width: 100%;
    }
    
    /* Hide admin navigation by default on mobile */
    .admin-nav {
        display: none !important;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    /* Show navigation when active */
    .admin-nav.is-open {
        display: flex !important;
    }
    
    .admin-nav a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }
    
    /* Responsive table for mobile - card layout */
    .admin-table {
        display: block;
        overflow-x: auto;
    }
    
    .admin-table thead {
        display: none;
    }
    
    .admin-table tbody {
        display: block;
    }
    
    .admin-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .admin-table td {
        display: block;
        text-align: right;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 50%;
    }
    
    .admin-table td:last-child {
        border-bottom: none;
    }
    
    .admin-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        font-weight: bold;
        text-align: left;
        color: var(--primary-color);
    }
    
    /* Action buttons stack vertically on mobile */
    .admin-table td .btn-small {
        display: block;
        width: 100%;
        margin: 0.3rem 0;
        text-align: center;
    }
    
    /* Form adjustments for mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 44px !important; /* Touch-friendly size */
        padding: 0.75rem !important;
    }
    
    .btn,
    button[type="submit"],
    a.btn {
        width: 100%;
        padding: 1rem !important;
        font-size: 16px !important;
        min-height: 44px !important;
        margin-bottom: 0.5rem;
    }
    
    /* Ensure small buttons are also touch-friendly */
    .btn-small,
    .admin-table select,
    .admin-table button {
        min-height: 44px !important;
        font-size: 16px !important;
        padding: 0.75rem !important;
    }
    
    /* Calendar mobile layout */
    .calendar-time-grid {
        display: block;
        min-width: 100%;
    }
    
    .calendar-week-view {
        overflow-x: visible;
    }
    
    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Header adjustments for mobile */
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .admin-header .header-content h1 {
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* SMALL MOBILE (< 480px) */
/* ============================================ */
@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
    
    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .admin-header .header-content h1 {
        font-size: 1.3rem;
    }
    
    .admin-table td {
        padding: 0.6rem 0.8rem;
        padding-left: 45%;
        font-size: 0.9rem;
    }
    
    .admin-table td::before {
        font-size: 0.85rem;
        left: 0.8rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
}
/* Calendar grid - 2 columns side by side */
@media (min-width: 769px) {
    .calendar-grid-2col {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Progress Indicator Styles */
.progress-indicator {
    max-width: 800px;
    margin: 2rem auto 3rem;
    position: relative;
}


.progress-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
}

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

.progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.progress-label {
    font-size: 0.85rem;
    color: #999;
    white-space: nowrap;
}

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

/* Calendar Page Specific Styles */
.calendar-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.calendar-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.calendar-legend {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.legend-color-available {
    background: #4CAF50;
}

.legend-color-free {
    background: #2196F3;
}

.legend-color-unavailable {
    background: #ccc;
}

/* Progress Steps Wrapper */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Calendar Grid Styles */
.calendar-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calendar-month-year {
    color: var(--primary-color);
    font-weight: 600;
}

.calendar-weekday {
    font-weight: bold;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    text-align: center;
}

/* Card Styles */
.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.card-title-time {
    color: #2196F3;
}

.card-description {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-active {
    background: linear-gradient(to bottom, rgba(33, 150, 243, 0.08), white);
    border: 2px solid rgba(33, 150, 243, 0.3);
}

.selected-date-box {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
    margin-bottom: 1rem;
}

.selected-date-box p {
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
}

/* Time Period Styles */
.time-period-title {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Success Box */
.success-box {
    margin-top: 2rem;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-radius: 15px;
    border: 2px solid var(--success-color);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.success-icon span {
    font-size: 2rem;
    color: white;
}

.success-title {
    color: var(--success-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.success-text {
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
}

.btn-continue {
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
}

/* Warning Box */
.warning-box {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 138, 101, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 138, 101, 0.3);
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.warning-title {
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.warning-text {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Error Box */
.error-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 138, 101, 0.1);
    border-radius: 10px;
}

.error-box p {
    color: var(--warning-color);
    margin: 0;
}

/* Empty State Box */
.empty-state-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(139, 154, 139, 0.05);
    border-radius: 15px;
    border: 2px dashed var(--primary-color);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state-title {
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.empty-state-text {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .calendar-grid-2col {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .calendar-title {
        font-size: 1.6rem;
    }
    
    .calendar-subtitle {
        font-size: 1rem;
    }
    
    .calendar-legend {
        gap: 1rem;
    }
    
    .legend-item span {
        font-size: 0.85rem;
    }
    
    .card-title {
        font-size: 1.2rem !important;
    }
    
    .success-box, .warning-box, .empty-state-box {
        padding: 2rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
    }
    
    .success-icon span {
        font-size: 1.5rem;
    }
    
    .success-title {
        font-size: 1.2rem;
    }
    
    .success-text {
        font-size: 1rem;
    }
    
    .btn-continue {
        font-size: 1rem !important;
        padding: 1rem 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .progress-indicator {
        margin: 1.5rem auto 2rem;
        padding: 0 0.5rem;
    }
    
    .progress-number {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .progress-label {
        font-size: 0.65rem;
        max-width: 70px;
        text-align: center;
        line-height: 1.1;
    }
    
    .calendar-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .calendar-subtitle {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }
    
    .calendar-legend {
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .legend-color {
        width: 14px;
        height: 14px;
    }
    
    .legend-item span {
        font-size: 0.7rem;
    }
    
    .calendar-grid-2col {
        gap: 1rem !important;
    }
    
    .calendar-day {
        padding: 0.5rem 0.2rem;
        font-size: 0.8rem;
        min-height: 34px;
    }
    
    .calendar-grid {
        gap: 2px;
    }
    
    .calendar-nav {
        padding: 0.4rem 0.7rem !important;
        font-size: 1.1rem;
    }
    
    .calendar-header h3 {
        font-size: 1rem !important;
    }
    
    .card {
        padding: 1rem;
    }
    
    .card h2 {
        font-size: 1.1rem !important;
    }
    
    .card p {
        font-size: 0.85rem !important;
    }
    
    .time-period-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .card-title {
        font-size: 1.1rem !important;
    }
    
    .card-description {
        font-size: 0.8rem !important;
    }
    
    .selected-date-box {
        padding: 0.8rem;
    }
    
    .selected-date-box p {
        font-size: 0.9rem !important;
    }
    
    .success-box, .warning-box, .empty-state-box {
        padding: 1.5rem 1rem;
    }
    
    .success-icon {
        width: 45px;
        height: 45px;
    }
    
    .success-icon span {
        font-size: 1.3rem;
    }
    
    .success-title {
        font-size: 1.1rem;
    }
    
    .success-text {
        font-size: 0.95rem;
    }
    
    .warning-icon, .empty-state-icon {
        font-size: 2.5rem !important;
    }
    
    .warning-title, .empty-state-title {
        font-size: 1rem !important;
    }
    
    .warning-text, .empty-state-text {
        font-size: 0.85rem !important;
    }
    
    .time-slot {
        padding: 0.7rem 0.5rem !important;
        font-size: 0.85rem !important;
    }
    
    .btn-large {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
    }
    
    .hero {
        padding: 1.5rem 0 !important;
    }
    
    .container {
        padding: 0 1rem;
    }
}


/* PWA Install Banner */
.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.install-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.install-banner-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.install-banner-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-install {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-install:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-close-banner {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn-close-banner:hover {
    opacity: 1;
}

/* Camera Modal */
.camera-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.camera-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.camera-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.camera-modal-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.btn-close-modal {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.2s;
}

.btn-close-modal:hover {
    color: var(--text-dark);
}

.camera-preview {
    position: relative;
    background: #000;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.camera-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-preview canvas {
    display: none;
}

.camera-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-color);
}

.btn-camera,
.btn-camera-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-camera {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-camera-primary:hover {
    background: #7a9e91;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 179, 165, 0.3);
}

.photo-preview {
    padding: 1.5rem;
}

.photo-preview img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.photo-preview-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .camera-modal-content {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .camera-controls {
        flex-direction: column;
    }
    
    .btn-camera,
    .btn-camera-primary {
        width: 100%;
    }
    
    .install-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-install {
        width: 100%;
    }
}

.btn-camera-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-camera-trigger:hover {
    background: #94b8e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 200, 236, 0.3);
}
