/* Service page styles */
.service-page {
    padding-top: 60px;
}

.service-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.service-hero p {
    font-size: 1.3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.service-image-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
    transition: transform 0.5s ease;
}

.service-image-hero:hover {
    transform: scale(1.02);
}

.service-content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-content h2 {
    color: #2c5f2d;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2c5f2d, transparent);
    border-radius: 2px;
}

.service-content h3 {
    color: #1e4620;
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-features-list li {
    padding: 1rem;
    font-size: 1.05rem;
    color: #444;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 30px;
}

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

.service-features-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #2c5f2d;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-features-list li:hover {
    padding-right: 40px;
    color: #2c5f2d;
    background: rgba(44, 95, 45, 0.05);
    border-radius: 8px;
}

.service-features-list li:hover::before {
    opacity: 1;
}

.service-suitability {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.suitability-item {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-right: 4px solid #2c5f2d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.suitability-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.suitability-item:hover::before {
    transform: scale(2);
}

.suitability-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.suitability-item h4 {
    color: #2c5f2d;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.suitability-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-booking-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.service-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.05) 0%, transparent 70%);
}

.service-booking-form h2 {
    text-align: center;
    color: #2c5f2d;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #1e4620;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-group label:hover {
    color: #2c5f2d;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-whatsapp {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-whatsapp:hover::after {
    width: 400px;
    height: 400px;
}

.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.service-link-arrow {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    color: #2c5f2d;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

