/* Services Page Specific Styles */

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Cards */
.service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #8B4513;
}

.service-card.featured {
    border-color: #8B4513;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Service Header */
.service-header {
    margin-bottom: 20px;
    position: relative;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.service-card.featured .service-header h3 {
    color: white;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 5px;
}

.service-card.featured .service-price {
    color: white;
}

.per-hand {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.service-card.featured .per-hand {
    color: rgba(255, 255, 255, 0.8);
}

/* Badges */
.popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFD700;
    color: #8B4513;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.addon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #25D366;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(15deg);
}

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-features li:before {
    color: white;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Book Button */
.book-btn {
    background: #8B4513;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
}

.book-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.service-card.featured .book-btn {
    background: white;
    color: #8B4513;
}

.service-card.featured .book-btn:hover {
    background: #f8f9fa;
    color: #8B4513;
}

/* Booking Information */
.booking-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    border: 2px solid #8B4513;
}

.booking-info h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-info p {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info strong {
    color: #8B4513;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-container {
        padding: 30px 15px;
    }
    
    .services-header h1 {
        font-size: 2.2rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    .booking-info {
        padding: 30px 20px;
    }
    
    .booking-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 20px 10px;
    }
    
    .services-header h1 {
        font-size: 1.8rem;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-header h3 {
        font-size: 1.2rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .book-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .booking-info {
        padding: 25px 15px;
    }
    
    .booking-info h3 {
        font-size: 1.3rem;
    }
    
    .booking-info p {
        font-size: 1rem;
    }
    
    .contact-info p {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .services-header h1 {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-header h3 {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
    
    .book-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .booking-info h3 {
        font-size: 1.2rem;
    }
    
    .booking-info p {
        font-size: 0.9rem;
    }
}
