/* --- Service Page Styling --- */

body {
    background-color: #fdfcfb;
    font-family: 'Inter', sans-serif;
}

.service-hero {
    background-color: #d1b29a;
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.service-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-section {
    padding: 100px 0;
}

.service-section:nth-child(even) {
    background-color: #fff;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-section:nth-child(even) .service-content {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.service-text {
    flex: 1;
}

.service-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8c7365;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.service-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #361C16;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.service-footer {
    text-align: center;
    padding: 60px 0;
    background-color: #361C16;
    color: white;
}

.back-home {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.back-home:hover {
    opacity: 0.7;
    color: white;
}

.back-home i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .service-hero h1 {
        font-size: 32px;
    }

    .floating-back {
        top: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}

/* --- Floating Back Button --- */
.floating-back {
    position: fixed;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: white;
    color: #361C16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-back:hover {
    background-color: #361C16;
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

.floating-back i {
    font-size: 18px;
}


