/* ============================================
   Services Hero V2 (Similar to Our Story Hero)
   ============================================ */
.services-hero-v2 {
    position: relative;
    min-height: 90vh;
    padding: 100px 0 80px;
    background-color: var(--color-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Light Yellow Animation */
.services-hero-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(243, 192, 8, 0.1) 0%, transparent 50%);
    animation: servicesGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.services-hero-v2-glow {
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 192, 8, 0.06) 0%, transparent 60%);
    animation: servicesGlow 12s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes servicesGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translate(5%, -5%) scale(1.1);
        opacity: 0.9;
    }

    66% {
        transform: translate(-5%, 5%) scale(1.05);
        opacity: 0.7;
    }
}

.services-hero-v2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.services-hero-v2-content {
    display: flex;
    flex-direction: column;
}

.services-hero-v2-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 24px;
    padding: 10px 20px;
    background: rgba(243, 192, 8, 0.08);
    border: 1px solid rgba(243, 192, 8, 0.2);
    border-radius: 50px;
    width: fit-content;
}

.services-hero-v2-label svg {
    width: 16px;
    height: 16px;
}

.services-hero-v2-title {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.services-hero-v2-title span {
    color: var(--color-gold);
}

.services-hero-v2-text {
    font-size: 17px;
    color: var(--color-white-soft);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Buttons */
.services-hero-v2-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.services-hero-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services-hero-v2-btn.primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.services-hero-v2-btn.primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.services-hero-v2-btn.primary:hover {
    background: transparent;
    color: var(--color-gold);
}

.services-hero-v2-btn.primary:hover svg {
    transform: translateX(4px);
}

.services-hero-v2-btn.secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-hero-v2-btn.secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Service Highlights */
.services-hero-v2-highlights {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 192, 8, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.highlight-desc {
    font-size: 12px;
    color: var(--color-white-muted);
}

.highlight-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Right Image Grid */
.services-hero-v2-images {
    position: relative;
    height: 550px;
}

.services-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.services-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-img:hover img {
    transform: scale(1.08);
}

/* First image spans 2 rows */
.services-img-1 {
    grid-row: span 2;
}

/* Second and third stack on right */
.services-img-2,
.services-img-3 {
    grid-column: 2;
}

/* Gold border on hover */
.services-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.services-img:hover::after {
    border-color: var(--color-gold);
}

/* Badge */
.services-hero-v2-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--color-gold);
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.badge-number {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
}

/* Responsive */
@media (max-width: 1100px) {
    .services-hero-v2-title {
        font-size: 46px;
    }

    .services-hero-v2-wrapper {
        gap: 40px;
    }

    .services-hero-v2-images {
        height: 480px;
    }
}

@media (max-width: 900px) {
    .services-hero-v2 {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .services-hero-v2-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-hero-v2-content {
        text-align: center;
        align-items: center;
    }

    .services-hero-v2-text {
        max-width: 100%;
    }

    .services-hero-v2-buttons {
        justify-content: center;
    }

    .services-hero-v2-highlights {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .highlight-divider {
        display: none;
    }

    .services-hero-v2-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-hero-v2-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

@media (max-width: 600px) {
    .services-hero-v2 {
        padding: 60px 0 80px;
    }

    .services-hero-v2-title {
        font-size: 36px;
    }

    .services-hero-v2-text {
        font-size: 15px;
    }

    .services-hero-v2-buttons {
        flex-direction: column;
        width: 100%;
    }

    .services-hero-v2-btn {
        justify-content: center;
        width: 100%;
    }

    .services-hero-v2-highlights {
        flex-direction: row;
        align-items: center;
    }

    .services-hero-v2-images {
        height: 350px;
    }

    .services-image-grid {
        gap: 10px;
    }

    .services-img {
        border-radius: 12px;
    }

    .services-hero-v2-badge {
        padding: 16px 22px;
    }

    .badge-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .services-hero-v2-title {
        font-size: 30px;
    }

    .services-hero-v2-label {
        font-size: 10px;
        padding: 8px 16px;
    }

    .services-hero-v2-images {
        height: 300px;
    }

    .highlight-item {
        gap: 10px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   Our Services Section (White Background)
   ============================================ */
.our-services {
    padding: 120px 0;
    background-color: var(--color-white);
}

.services-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.services-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.services-section-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
}

.services-section-desc {
    font-size: 16px;
    color: rgba(30, 30, 30, 0.7);
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 192, 8, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: var(--color-gold);
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-card-icon svg {
    stroke: var(--color-black);
}

.service-card-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-desc {
    font-size: 14px;
    color: rgba(30, 30, 30, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card-features li {
    font-size: 13px;
    color: rgba(30, 30, 30, 0.6);
    padding-left: 20px;
    position: relative;
}

.service-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* CTA Banner */
.services-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-black);
    border-radius: 24px;
    padding: 50px 60px;
    gap: 40px;
}

.services-cta-content {
    max-width: 500px;
}

.services-cta-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 10px;
}

.services-cta-text {
    font-size: 15px;
    color: var(--color-white-soft);
    line-height: 1.6;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.services-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.services-cta-btn:hover {
    background: transparent;
    color: var(--color-gold);
}

.services-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Services Section Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .our-services {
        padding: 80px 0;
    }

    .services-section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .services-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .services-cta-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .our-services {
        padding: 60px 0;
    }

    .services-section-title {
        font-size: 28px;
    }

    .services-section-header {
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .services-cta-banner {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .services-cta-title {
        font-size: 22px;
    }

    .services-cta-btn {
        padding: 16px 28px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Process Section
   ============================================ */
.service-process {
    padding: 100px 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.process-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
    padding: 8px 16px;
    background-color: rgba(243, 192, 8, 0.1);
    border-radius: 50px;
}

.process-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
}

.process-title span {
    color: var(--color-gold);
}

.process-desc {
    font-size: 16px;
    color: var(--color-white-soft);
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding-top: 20px;
    text-align: center;
}

.process-number {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 600;
    color: rgba(243, 192, 8, 0.2);
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    color: var(--color-gold);
    transform: translateY(-10px);
}

.process-content {
    position: relative;
    z-index: 2;
}

.process-step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.process-step-desc {
    font-size: 14px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(243, 192, 8, 0.5) 0%, rgba(243, 192, 8, 0.1) 100%);
    z-index: 1;
    transform: translateY(-50%);
}

/* Responsive Process */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        text-align: center;
    }
}