/* services.css - Wireframe 03 Style - Magenta Theme */

:root {
    --primary: #D13370;
    --primary-dark: #B01E5A;
    --primary-light: #FFE0E8;
    --primary-soft: #FFF0F5;
    --secondary: #4A4A4A;
    --gray-light: #F8F9FA;
    --gray: #E9ECEF;
    --dark: #212529;
    --white: #FFFFFF;
    --border: #DEE2E6;
    --shadow: 0 5px 20px rgba(209, 51, 112, 0.1);
}

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Category */
.service-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

.category-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service Card - Wireframe Style */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

/* Service Image */
.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.service-price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0 15px;
    padding: 8px 15px;
    background: var(--primary-light);
    display: inline-block;
    align-self: flex-start;
    border: 1px solid var(--primary);
}

.service-duration {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    padding: 5px 12px;
    background: var(--primary-light);
    display: inline-block;
    align-self: flex-start;
}

.service-description {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex: 1;
}

/* ============================================= */
/* WIREFRAME BOOK BUTTON - Magenta Theme */
/* ============================================= */
.btn-book-wireframe {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-book-wireframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-book-wireframe:hover {
    color: var(--white);
}

.btn-book-wireframe:hover::before {
    left: 0;
}

/* Booking Counter */
.booking-counter {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(209, 51, 112, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
}

.booking-counter:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.counter-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--white);
    color: var(--primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--primary);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.5s ease;
}

/* ============================================= */
/* MODAL - Small Tab (Wireframe Style) */
/* ============================================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-show {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
}

.modal-hide {
    opacity: 0;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
    pointer-events: auto;
}

.modal-show .modal-content {
    transform: translateY(0);
}

.modal-sm {
    max-width: 350px;
}

.modal-header {
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 30px 20px;
    text-align: center;
}

.modal-body p {
    margin-bottom: 10px;
    color: var(--secondary);
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-back,
.btn-confirm {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-back {
    background: var(--white);
    color: var(--secondary);
    border: 1px solid var(--border);
}

.btn-confirm {
    background: var(--primary);
    color: var(--white);
}

.btn-back:hover {
    background: var(--gray-light);
}

.btn-confirm:hover {
    background: var(--primary-dark);
}

.btn-confirm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 15px 25px;
    border-radius: 4px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 999;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-content i {
    color: var(--primary);
    font-size: 1.5rem;
}

.toast-content span {
    color: var(--dark);
    font-weight: 500;
}

/* Contact Section (Wireframe 03) */
.contact-section {
    margin-top: 80px;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
}

.contact-section h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .booking-counter {
        top: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-links {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .btn-book-wireframe {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .toast-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        transform: translateY(100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}