* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Remove old header styles - header component uses landingpage.css */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 1rem 2rem 1rem; /* Top padding for fixed header */
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff6b8a;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 1.5rem;
}

.service-info h2 {
    color: #ff6b8a;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.book-btn {
    background-color: #ff6b8a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    width: 100%;
}

.book-btn:hover {
    background-color: #ff4971;
}

.service-details-modal,
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-header {
    display: flex;
    gap: 2rem;
}

.service-detail-image {
    flex: 0 0 300px;
    height: 300px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    color: #ff6b8a;
    margin-bottom: 1rem;
}

.service-detail-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-duration,
.service-price {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-duration span,
.service-price span {
    color: #ff6b8a;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #ff6b8a;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #ff4971;
}

.confirmation-message {
    text-align: center;
    padding: 2rem;
    display: none;
}

.confirmation-message h2 {
    color: #ff6b8a;
    margin-bottom: 1rem;
}

.confirmation-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    main {
        padding: 60px 1rem 2rem 1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-info {
        padding: 1rem;
    }
    
    .service-info h2 {
        font-size: 1.2rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    .book-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ff7da7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff7da7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    color: white;
    margin: 0 10px;
    font-size: 20px;
}