.services-hero-section {
    position: relative;
    padding: 12.04vh 0 0vh;
    background: #FFFFFF;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.services-hero-section .hero-container {
    max-width: 72.92vw;
    margin: 0 auto;
    padding: 0 1.25vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.17vw;
    align-items: center;
}

.hero-image-section {
    position: relative;
    height: 37.04vh;
    border-radius: 1.11vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 1.11vh;
    object-fit: cover;
}

.image-overlay {
    display: none;
}

.hero-content-section {
    padding: 3.7vh 0;
    position: relative;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.48vh;
    margin-bottom: 2.22vh;
}

.hero-badge .badge-line {
    width: 2.08vw;
    height: 0.093vh;
    background: #000000;
    display: block;
    flex-shrink: 0;
}

.dots-indicator {
    display: flex;
    gap: 0.56vh;
}

.dot {
    width: 0.74vh;
    height: 0.74vh;
    background: #4A5D23;
    border-radius: 50%;
}

.badge-text {
    font-size: 1.3vh;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.16vh;
}

.hero-main-title {
    font-size: 4.44vh;
    font-weight: 800;
    color: #000000;
    margin-bottom: 2.96vh;
    line-height: 1.1;
    letter-spacing: -0.032vh;
}

.hero-main-title .title-dot,
.hero-main-title .title-highlight {
    color: #b3ce3a;
}

.services-hero-description {
    font-size: 1.8vh;
    line-height: 1.6;
    color: #545454;
    margin-bottom: 2vh;
    text-align: left;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.48vh;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    right: -3.13vw;
    top: 50%;
    transform: translateY(-50%);
}

.social-text {
    font-size: 1.3vh;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.16vh;
    margin-bottom: 1.11vh;
}

.social-link {
    font-size: 1.3vh;
    font-weight: 600;
    color: #4A5D23;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.74vh;
    writing-mode: horizontal-tb;
    width: 2.08vw;
    height: 2.08vw;
    border-radius: 50%;
    border: 0.093vh solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.social-link:hover {
    color: #B3CE3A;
}

.qreative-services-section {
    padding: 7.41vh 1.25vw;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.qreative-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 9.26vh;
    background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.qreative-services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 9.26vh;
    background: linear-gradient(to top, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.services-container {
    max-width: 72.92vw;
    margin: 0 auto;
    padding: 0 1.25vw;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.08vw;
    align-items: stretch;
}

.services-page-card {
    height: auto;
    min-height: 38vh;
    background: white;
    border: 0.093vh solid rgba(226, 232, 240, 0.3);
    border-radius: 0.74vh;
    padding: 1.85vh;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 0.37vh 1.85vh rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
    animation: fadeInUp 0.6s ease-out;
}

.services-page-card:hover {
    box-shadow: 0 0.74vh 2.96vh rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 93, 35, 0.2);
    transform: translateY(-0.37vh);
}

.services-page-card:nth-child(1) { animation-delay: 0.1s; }
.services-page-card:nth-child(2) { animation-delay: 0.2s; }
.services-page-card:nth-child(3) { animation-delay: 0.3s; }
.services-page-card:nth-child(4) { animation-delay: 0.4s; }

.services-page-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5vh;
}

.services-page-card .service-letter {
    font-size: 5.56vh;
    font-weight: 300;
    color: #b3ce3a;
    line-height: 1;
    margin-top: -0.74vh;
}

.services-page-card .service-category {
    color: rgba(107, 124, 50, 0.5);
    font-size: 1.39vh;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    margin: 0;
}

.services-page-card .card-content {
    flex: 1;
    position: relative;
}

.services-page-card .service-title {
    font-size: 2vh;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.48vh;
    line-height: 1.3;
    max-width: 85%;
    text-align: left;
}

.services-page-card .service-title .font-bold {
    font-weight: 700;
}

.services-page-card .corner-arrow {
    width: 1.11vh;
    height: 1.11vh;
    border-right: 0.185vh solid #64748B;
    border-top: 0.185vh solid #64748B;
    position: absolute;
    right: 1.11vh;
    top: 0.37vh;
}

.services-page-card .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.11vh;
    margin-bottom: 1.48vh;
    overflow: hidden;
}

.services-page-card .tag {
    display: flex;
    align-items: center;
    gap: 0.28vh;
    padding: 0.46vh 1.11vh;
    background: #D9D9D973;
    border-radius: 0.46vh;
    font-size: 1.3vh;
    color: #545454;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.services-page-card .tag svg {
    width: 1.3vh;
    height: 1.3vh;
}

.services-page-card .service-description {
    color: #545454;
    line-height: 1.6;
}

.services-page-card .service-description p {
    margin: 0;
    font-size: 1.5vh;
    line-height: 1.5;
}

.services-page-card .card-button {
    position: absolute;
    bottom: 1.85vh;
    right: 1.85vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-page-card:hover .card-button {
    opacity: 1;
}

.services-page-card .button-wrapper {
    position: relative;
    display: inline-block;
    padding: 0.185vh;
    border-radius: 4.63vh;
    background: linear-gradient(135deg, #4A5D23, transparent);
    transition: all 0.5s ease;
}

.services-page-card .button-wrapper:hover {
    background: linear-gradient(135deg, #6B7C32, transparent);
}

.services-page-card .button-wrapper:hover .button-icon {
    transform: rotate(-45deg);
}

.services-page-card .button-link {
    display: flex;
    align-items: center;
    gap: 0.74vh;
    padding: 1.11vh 2.22vh;
    background: white;
    color: #0F172A;
    border: none;
    border-radius: 4.63vh;
    font-size: 0.93vh;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-page-card .button-text {
    font-size: 0.81vh;
    font-weight: 600;
    padding-right: 0.74vh;
}

.services-page-card .button-icon {
    width: 2.59vh;
    height: 2.59vh;
    background: #4A5D23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.5s ease;
}

.services-page-card .button-icon svg {
    width: 0.81vh;
    height: 0.81vh;
}

.services-page-card.cta-card {
    background: linear-gradient(135deg, #b3ce3a, #a8c42a);
    border-color: #b3ce3a;
}

.services-page-card.cta-card .service-category {
    color: rgba(255, 255, 255, 0.8);
}

.services-page-card.cta-card .service-title {
    color: white;
}

.services-page-card.cta-card .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.services-page-card.cta-card .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.services-page-card.cta-card .corner-arrow {
    border-color: rgba(255, 255, 255, 0.6);
}

.services-page-card.cta-card .button-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
}

.services-page-card.cta-card .button-wrapper:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
}

.services-page-card.cta-card .button-link {
    background: rgba(255, 255, 255, 0.95);
    color: #b3ce3a;
}

.services-page-card.cta-card .button-icon {
    background: #b3ce3a;
    color: white;
}

.services-page-card.cta-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-page-card.cta-card .service-letter {
    margin: 0 auto;
    font-size: 12.04vh;
}

.services-page-card.cta-card .service-title {
    margin: 0;
    font-size: 1.39vh;
}

.cta-corner-arrow {
    position: absolute;
    width: 1.85vh;
    height: 1.85vh;
    z-index: 10;
}

.cta-corner-arrow::before,
.cta-corner-arrow::after {
    content: '';
    position: absolute;
    background: white;
}

.cta-corner-top-right {
    top: 1.85vh;
    right: 1.85vh;
}

.cta-corner-top-right::before {
    width: 1.85vh;
    height: 0.185vh;
    top: 0;
    right: 0;
}

.cta-corner-top-right::after {
    width: 0.185vh;
    height: 1.85vh;
    top: 0;
    right: 0;
}

.cta-corner-bottom-left {
    bottom: 1.85vh;
    left: 1.85vh;
}

.cta-corner-bottom-left::before {
    width: 1.85vh;
    height: 0.185vh;
    bottom: 0;
    left: 0;
}

.cta-corner-bottom-left::after {
    width: 0.185vh;
    height: 1.85vh;
    bottom: 0;
    left: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2.78vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-page-card:focus-visible,
.services-page-card .button-link:focus-visible {
    outline: 0.185vh solid #4A5D23;
    outline-offset: 0.185vh;
}

@media (max-width: 480px) {
    .services-hero-section {
        padding: 12vh 0 4vh !important;
        min-height: auto !important;
    }

    .services-hero-section .hero-container {
        max-width: 100% !important;
        padding: 0 4vw !important;
        grid-template-columns: 1fr !important;
        gap: 3vh !important;
    }

    .hero-image-section {
        height: 25vh !important;
        order: 2 !important;
    }

    .hero-content-section {
        padding: 0 !important;
        order: 1 !important;
        text-align: center !important;
    }

    .hero-badge {
        justify-content: center !important;
        margin-bottom: 2vh !important;
        gap: 1vh !important;
    }

    .hero-badge .badge-line {
        width: 3vw !important;
        height: 0.1vh !important;
    }

    .badge-text {
        font-size: 1.1vh !important;
    }

    .hero-main-title {
        font-size: 2.5vh !important;
        margin-bottom: 2vh !important;
        line-height: 1.2 !important;
    }

    .services-hero-description {
        font-size: 1.4vh !important;
        line-height: 1.4 !important;
        color: #545454 !important;
        max-width: 90vw !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .social-links {
        display: none !important;
    }

    .qreative-services-section {
        padding: 8vh 4vw !important;
    }

    .services-container {
        max-width: 100% !important;
        padding: 0 4vw !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5vh !important;
    }

    .services-page-card {
        height: auto !important;
        min-height: 30vh !important;
        padding: 3vh 4vw !important;
    }

    .services-page-card .card-header {
        margin-bottom: 2vh !important;
    }

    .services-page-card .service-letter {
        font-size: 4vh !important;
    }

    .services-page-card .service-category {
        font-size: 1vh !important;
    }

    .services-page-card .service-title {
        font-size: 1.5vh !important;
        margin-bottom: 1.2vh !important;
        line-height: 1.3 !important;
    }

    .services-page-card .service-description p {
        font-size: 1.2vh !important;
        line-height: 1.5 !important;
    }

    .services-page-card .tag {
        font-size: 1.1vh !important;
        padding: 0.35vh 0.85vh !important;
        gap: 0.25vh !important;
        border-radius: 0.4vh !important;
    }
    
    .services-page-card .tag svg {
        width: 1.1vh !important;
        height: 1.1vh !important;
    }

    .services-page-card .service-tags {
        gap: 0.8vh !important;
        margin-bottom: 1.2vh !important;
    }

    .services-page-card .card-button {
        bottom: 1.5vh !important;
        right: 1.5vw !important;
    }

    .services-page-card .button-link {
        padding: 0.8vh 1.5vh !important;
        font-size: 0.8vh !important;
    }

    .services-page-card .button-text {
        font-size: 0.7vh !important;
    }

    .services-page-card .button-icon {
        width: 2vh !important;
        height: 2vh !important;
    }

    .services-page-card .button-icon svg {
        width: 0.7vh !important;
        height: 0.7vh !important;
    }

    .services-page-card.cta-card .service-letter {
        font-size: 8vh !important;
    }

    .services-page-card.cta-card .service-title {
        font-size: 1.2vh !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .services-hero-section {
        padding: 10vh 0 4vh !important;
        min-height: 60vh !important;
    }

    .services-hero-section .hero-container {
        max-width: 90vw !important;
        padding: 0 3vw !important;
        gap: 3vh !important;
    }

    .hero-image-section {
        height: 30vh !important;
    }

    .hero-content-section {
        padding: 1vh 0 !important;
    }

    .hero-badge {
        margin-bottom: 2.5vh !important;
        gap: 1.2vh !important;
    }

    .hero-badge .badge-line {
        width: 2.5vw !important;
    }

    .badge-text {
        font-size: 1.2vh !important;
    }

    .hero-main-title {
        font-size: 3.5vh !important;
        margin-bottom: 2.5vh !important;
    }

    .social-links {
        right: -2vw !important;
    }

    .qreative-services-section {
        padding: 6vh 3vw !important;
    }

    .services-container {
        max-width: 90vw !important;
        padding: 0 3vw !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5vh !important;
    }

    .services-page-card {
        height: auto !important;
        min-height: 35vh !important;
        padding: 2.5vh 2.5vw !important;
    }

    .services-page-card .service-letter {
        font-size: 4.5vh !important;
    }

    .services-page-card .service-category {
        font-size: 1.1vh !important;
    }

    .services-page-card .service-title {
        font-size: 1.7vh !important;
        margin-bottom: 1.3vh !important;
    }

    .services-page-card .service-description p {
        font-size: 1.3vh !important;
        line-height: 1.5 !important;
    }

    .services-page-card .tag {
        font-size: 1.5vh !important;
        padding: 0.45vh 1.1vh !important;
    }
    
    .services-page-card .tag svg {
        width: 1.5vh !important;
        height: 1.5vh !important;
    }

    .services-page-card.cta-card .service-letter {
        font-size: 10vh !important;
    }

    .services-page-card.cta-card .service-title {
        font-size: 1.3vh !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-hero-section .hero-container {
        max-width: 80vw !important;
        gap: 3.5vh !important;
    }

    .hero-image-section {
        height: 35vh !important;
    }

    .hero-main-title {
        font-size: 4vh !important;
    }

    .qreative-services-section {
        padding: 6vh 2vw !important;
    }

    .services-container {
        max-width: 80vw !important;
        padding: 0 2vw !important;
    }

    .services-grid {
        gap: 2.2vh !important;
    }

    .services-page-card {
        min-height: 36vh !important;
        padding: 2.2vh 2.2vw !important;
    }

    .services-page-card .service-letter {
        font-size: 5vh !important;
    }

    .services-page-card .service-title {
        font-size: 1.8vh !important;
    }

    .services-page-card .service-description p {
        font-size: 1.4vh !important;
        line-height: 1.5 !important;
    }

    .services-page-card .tag {
        font-size: 1.4vh !important;
        padding: 0.45vh 1.05vh !important;
    }
    
    .services-page-card .tag svg {
        width: 1.4vh !important;
        height: 1.4vh !important;
    }
}

@media (min-width: 1025px) {
    .services-hero-section .hero-container {
        max-width: 72.92vw !important;
        gap: 4.17vw !important;
    }

    .hero-image-section {
        height: 37.04vh !important;
    }

    .hero-main-title {
        font-size: 4.44vh !important;
    }

    .qreative-services-section {
        padding: 7.41vh 1.25vw !important;
    }

    .services-container {
        max-width: 72.92vw !important;
        padding: 0 1.25vw !important;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2.08vw !important;
    }

    .services-page-card {
        height: auto !important;
        min-height: 38vh !important;
        padding: 1.85vh !important;
    }

    .services-page-card .service-letter {
        font-size: 5.56vh !important;
    }

    .services-page-card .service-category {
        font-size: 1.39vh !important;
    }

    .services-page-card .service-title {
        font-size: 2vh !important;
    }

    .services-page-card .service-description p {
        font-size: 1.5vh !important;
        line-height: 1.5 !important;
    }

    .services-page-card .tag {
        font-size: 1.4vh !important;
        padding: 0.45vh 1.1vh !important;
    }
    
    .services-page-card .tag svg {
        width: 1.4vh !important;
        height: 1.4vh !important;
    }
}
