.services-page {
    min-height: 100vh;
}

.hero-section {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('/api/placeholder/1400/800') center/cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
@media (max-width:543px){
    .hero-subtitle{
        font-size: 17px;
        margin-bottom: 10px;
    }
}
.hero-title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #7a5c43;
}
@media (max-width:991px){
    .hero-title{
        font-size: 35px;
        margin-bottom: 15px;
    }
}
@media (max-width:543px){
    .hero-title{
        font-size: 25px;
        margin-bottom: 15px;
    }
}
@media (max-width:380px){
    .hero-title{
        font-size: 20px;
        margin-bottom: 15px;
    }
}
.hero-description {
    font-size: 15px;
    color: #777;
    max-width: 600px;
}

.services-section {
    margin-top: -5rem;
    padding: 0 2rem 1rem;
    position: relative;
}
@media (max-width:543px){
    .services-section{
        padding: 0 0rem 1rem;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(-2deg);
}

.service-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #1a1a1a;
    backdrop-filter: blur(5px);
}

.service-content {
    padding: 2.5rem;
    position: relative;
}
@media (max-width:543px){
    .service-content{
        padding: 12px;
    }
}
.service-title {
    font-size: 20px;
    color: #7a5c43;
    margin-bottom: 1rem;
}
@media (max-width:543px){
    .service-title{
        font-size: 17px;
        margin-bottom: 10px;
    }
}
.service-description {
    color: #777;
    margin-bottom: 2rem;
    font-size: 16px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
}

.feature-item::before {
    content: '→';
    color: #1a1a1a;
    font-weight: bold;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}
@media (max-width:543px){
    .service-price{
        font-size: 16px;
    }
}
.service-price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.service-button {
    background: #7a5c43;
    font-size: 14px;
    color: white;
    padding: 1rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #232323;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}