

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.service-info {
    padding: 1.5rem;
}

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

.service-info .price {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #666;
}

  /* Image Modal Styles */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5vh;
    animation: zoom 0.3s;
}
@keyframes zoom {
    from {transform: scale(0.9)}
    to {transform: scale(1)}
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover {
    color: #f39c12;
}

/* ===== Barber Booking Section Styles ===== */
#booking {
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), 
                url('../assets/images/barber-bg-pattern.png');
    background-size: cover;
    padding: 60px 0;
    margin: 3rem 0px;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.booking-info h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.price-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.price-list h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.price-list ul {
    list-style: none;
    padding-left: 0;
}

.price-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list strong {
    color: #2c3e50;
}

/* Booking Options Toggle */
.booking-options {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
    width: 100%;
}

.booking-option {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.booking-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.booking-option.active {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.2);
}

.booking-option i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f39c12;
    transition: all 0.3s ease;
}

.booking-option.active i {
    color: #e74c3c;
    transform: scale(1.1);
}

.booking-option h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
}

.booking-option p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Booking Forms */
.hidden-form {
    display: none;
    animation: fadeIn 0.4s ease-out;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

#housecall-form, #instore-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

#housecall-form h3, #instore-form h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* WhatsApp Button */
.whatsapp-booking-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-booking-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-booking-btn i {
    font-size: 1.4rem;
}
        
/* Add these styles to your barbershop.css */
.booking-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.booking-option {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}
.booking-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.booking-option.active {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}
.booking-option i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #25D366;
}
.whatsapp-booking-btn {
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}
.whatsapp-booking-btn:hover {
    background-color: #128C7E;
}
.hidden-form {
    display: none;
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.service-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}
.butons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.butons p {
    margin: 0;
    color: #666;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-options {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-option {
        width: 100%;
        max-width: 100%;
    }
    
    #housecall-form, #instore-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .booking-info, #housecall-form, #instore-form {
        min-width: 100%;
    }
    
    .whatsapp-booking-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Gallery Grid Enhancements */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.pricing-info {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.pricing-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-info p {
    margin-bottom: 0.5rem;
}

.pricing-info strong {
    color: var(--accent-color);
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
}

.form-group textarea {
    min-height: 100px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.whatsapp-btn i {
    margin-right: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 30px;
}

.contact-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .barber-hero h1 {
        font-size: 2.2rem;
    }
    
    .barber-hero p {
        font-size: 1rem;
    }
}