/* Beauty Services - Expandable Cards & Contact Redesign */

/* Service Cards Improvements */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-item {
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.service-card-content {
    padding: 25px;
    text-align: center;
}

.service-card-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* More Info Button */
.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #C9A961;
    color: #C9A961;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.btn-more:hover {
    background: #C9A961;
    color: white;
    transform: translateX(5px);
}

.btn-more span {
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}

.btn-more:hover span {
    transform: translateX(3px);
}

/* Remove any ::after pseudo element that might add extra arrow */
.btn-more::after {
    display: none !important;
    content: none !important;
}

/* Expandable Service Details */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-details.expanded {
    max-height: 800px;
}

.service-details-content {
    padding: 0 25px 25px;
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    margin-top: -1px;
}

.service-price-list {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
}

.service-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-price-item:last-child {
    border-bottom: none;
}

.service-price-item strong {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
}

.service-price-item .duration {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

.service-price-item .price {
    color: #C9A961;
    font-weight: 600;
    font-size: 16px;
}

/* Contact Section - New Layout */
.contact-info {
    background: #fafafa;
    padding: 80px 0;
}

.contact-hours-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 50px;
}

.contact-details-box,
.opening-hours-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-details-box h3,
.opening-hours-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #C9A961;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #C9A961;
}

/* Opening Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.hours-item .day {
    color: #666;
    font-size: 14px;
}

.hours-item .time {
    color: #C9A961;
    font-weight: 500;
    font-size: 14px;
}

.hours-note {
    margin-top: 20px;
    padding: 12px;
    background: #fff9f0;
    border-left: 3px solid #C9A961;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-note i {
    color: #C9A961;
    font-size: 16px;
}

/* Map */
.contact-map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hours-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-details-box,
    .opening-hours-box {
        padding: 30px 20px;
    }
}

/* CTA Section Position */
.contact-cta {
    background: linear-gradient(135deg, #C9A961 0%, #A08654 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #C9A961;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #C9A961;
}

/* Homepage Service Buttons */
.service-content .service-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.service-content .btn-primary {
    flex: 1;
    max-width: 200px;
}

.service-content .btn-more {
    flex: 1;
    max-width: 200px;
    background: white;
    color: #C9A961;
    border: 2px solid #C9A961;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-content .btn-more:hover {
    background: #C9A961;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
