/* Services Section */
.services {
    background-color: #333333;
    padding: 80px 40px;
    font-family: inherit;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-wrapper {
    max-width: 1200px;
    width: 100%;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.services-header p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 550px;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.service-card {
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-8px);
}

.light-theme {
    background-color: #e2e2e2;
    color: #2b2b2b;
}

.light-theme h3 {
    color: #2b2b2b;
}

.dark-orange-theme {
    background-color: #ff5722;
    color: #ffffff;
}

.dark-orange-theme h3 {
    color: #ffffff;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.card-top h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    max-width: 70%;
    line-height: 1.3;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
}

.orange-btn {
    background-color: #ff5722;
    color: #ffffff;
}

.light-btn {
    background-color: #e2e2e2;
    color: #2b2b2b;
}

.service-card:hover .arrow-btn {
    transform: rotate(45deg);
}

.service-card.active .arrow-btn {
    transform: rotate(135deg);
}

.service-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0;
}

.service-card.active .service-description {
    max-height: 300px;
    opacity: 1;
    margin-top: 5px;
    margin-bottom: 25px;
}

.card-img-container {
    background-color: #303030;
    border-radius: 12px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-top: auto;
}

.card-img-container img {
    width: 150%;
    height: 190%;
    object-fit: contain;
}

.services-footer {
    text-align: center;
    margin-top: 130px;
    margin-bottom: 20px;
}

.services-footer h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-footer h3 span {
    color: #ff5722;
}

/* Banner Section */
.level-up-banner {
    width: 100%;
    max-width: 1200px;
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.banner-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #e2e2e2;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.banner-title .hashtag {
    color: #ff5722;
    margin-right: 5px;
    display: inline-block;
}

.deco-item {
    position: absolute;
    z-index: 3;
}

.deco-arrow-left {
    bottom: 27px;
    left: 20%;
    transform: rotate(5deg);
}

.deco-arrow-right {
    top: 80px;
    right: 15%;
    transform: rotate(15deg);
}

.deco-stamp {
    bottom: -40px;
    right: 15%;
    transform: rotate(10deg);
}

.glass-card {
    width: 70px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.glass-inner {
    width: 40px;
    height: 40px;
    background-color: #2b2b2b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.glass-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-card.card-1 {
    top: 45%;
    left: 20%;
    transform: rotate(-10deg);
}

.glass-card.card-2 {
    top: 25%;
    right: 30%;
    transform: rotate(5deg);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 3.5rem;
    }
    .deco-arrow-left {
        left: 0;
        transform: scale(0.7);
    }
    .deco-arrow-right {
        right: 0;
        top: -10px;
        transform: scale(0.7);
    }
    .deco-stamp {
        right: 5%;
        bottom: -20px;
        transform: scale(0.8);
    }
    .glass-card.card-1 { left: 5%; top: 50%; }
    .glass-card.card-2 { right: 10%; top: 20%; }
    
    .services-header {
        flex-direction: column;
        gap: 20px;
    }
    .services-header p {
        text-align: left;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-footer h3 {
        font-size: 1.4rem;
    }
    .services-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2.5rem;
    }
    .deco-stamp {
        transform: scale(0.6);
        right: 0;
        bottom: -30px;
    }
    .glass-card.card-1 { left: -5%; top: 35%; }
    .glass-card.card-2 { right: -3%; top: 40%; }
}
