/* HERO */
.services-hero {
    height: 40vh;
    background: url('/Image/Slide3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.services-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(62,39,35,0.8);
}

.hero-content {
    position: relative;
    text-align: center;
}

/* SECTION */
.services-section {
    padding: 80px 5%;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .tag {
    background: #ddd;
    padding: 5px 15px;
    border-radius: 20px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-card i {
    font-size: 30px;
    color: #3e2723;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* PROCESS */
.services-process {
    padding: 80px 5%;
    background: #ececec;
}

.process-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    text-align: center;
}

.step span {
    font-size: 28px;
    color: #3e2723;
}

/* CTA */
.services-cta {
    background: linear-gradient(to right, #3e2723, #1c1c1c);
    color: #fff;
    text-align: center;
    padding: 60px;
}

.services-cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #fff;
    color: #3e2723;
    border-radius: 30px;
    text-decoration: none;
}


/* Section */
.services-intro {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

/* Container */
.services-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT */
.services-left {
    flex: 1;
}

.services-left .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.services-left h2 {
    color: #3e2723;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-left p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* RIGHT */
.services-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* CARD */
.highlight-card {
    background: linear-gradient(135deg, #3e2723, #1c1c1c);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover */
.highlight-card:hover {
    transform: translateY(-8px);
}

/* Text */
.highlight-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
        text-align: center;
    }

    .services-left h2 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .highlight-card {
        padding: 30px;
    }
}

/* Section */
.services-grid-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.service-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Icon */
.service-box i {
    font-size: 30px;
    color: #3e2723;
    margin-bottom: 15px;
}

/* Title */
.service-box h4 {
    color: #3e2723;
    margin-bottom: 10px;
}

/* Text */
.service-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Hover */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Section */
.feature-strip {
    padding: 60px 5%;
    background: linear-gradient(135deg, #3e2723, #1c1c1c);
    color: #fff;
}

/* Container */
.feature-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
}

/* Item */
.feature-item {
    flex: 1;
    min-width: 250px;
}

/* Icon Circle */
.feature-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.feature-item .icon i {
    color: #ffffff; /* green accent */
    font-size: 22px;
}

/* Title */
.feature-item h4 {
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Text */
.feature-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Hover Effect */
.feature-item:hover .icon {
    background: #ffffff;
}

.feature-item:hover .icon i {
    color: #331818;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
        gap: 40px;
    }
}