/* ===========================
   SERVICES PAGE STYLES
   Quiet Rise Web Design
   =========================== */

/* ===========================
   ANIMATED BACKGROUND
   Floating shapes behind content
   =========================== */
.services-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

.services-background__shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(201, 170, 68, 0.03) 0%, 
        rgba(201, 170, 68, 0.08) 50%, 
        rgba(201, 170, 68, 0.03) 100%);
    animation: floatShape 20s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s ease-out;
}

.services-background__shape.reveal {
    opacity: 0.3;
    transform: scale(1);
}

.services-background__shape--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.services-background__shape--2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.services-background__shape--3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 22s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, 30px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 10px) rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
}

/* ===========================
   SERVICES HERO SECTION
   =========================== */
.services-hero {
    padding: calc(120px + var(--spacing-xxxl)) var(--spacing-lg) var(--spacing-xxxl);
    position: relative;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

/* Hero Background Media */
.services-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.services-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--color-background-dark);
}

.services-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(50, 50, 50, 0.7) 0%,
        rgba(50, 50, 50, 0.4) 30%,
        rgba(201, 170, 68, 0.2) 60%,
        rgba(50, 50, 50, 0.6) 100%
    );
    z-index: 2;
}

/* Hero Content */
.services-hero .container {
    position: relative;
    z-index: 3;
}

.services-hero__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    margin-top: 18vh;
}

.services-hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: var(--font-weight-light);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-family-heading);
    color: #ffffff; /* Explicit white color */
}

.services-hero__title .gold-text {
    color: #c9aa44; /* Explicit gold color */
    font-weight: var(--font-weight-medium);
}

.services-hero__title .black-text {
    color: #ffffff; /* Explicit white color */
}

.services-hero__subtitle {
    font-size: var(--font-size-large);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero__actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Hero section button styling - slimmer and sleeker */
.services-hero .btn--primary {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 25px;
    min-height: auto;
    height: 50px;
    text-transform: none;
    
    /* Glass morphism effect with slightly transparent gold - matching secondary */
    background: linear-gradient(135deg, 
        rgba(201, 170, 68, 0.4) 0%, 
        rgba(201, 170, 68, 0.3) 50%, 
        rgba(201, 170, 68, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 170, 68, 0.4);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(201, 170, 68, 0.15);
}

.services-hero .btn--primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(201, 170, 68, 0.6) 0%, 
        rgba(201, 170, 68, 0.5) 50%, 
        rgba(201, 170, 68, 0.4) 100%);
    border: 1px solid rgba(201, 170, 68, 0.6);
    box-shadow: 0 6px 25px rgba(201, 170, 68, 0.3);
}

.services-hero .btn--secondary {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 25px;
    min-height: auto;
    height: 50px;
    text-transform: none;
    
    /* Glass morphism effect with slightly transparent gold */
    background: linear-gradient(135deg, 
        rgba(201, 170, 68, 0.4) 0%, 
        rgba(201, 170, 68, 0.3) 50%, 
        rgba(201, 170, 68, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 170, 68, 0.4);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(201, 170, 68, 0.15);
}

/* Showcase bullet removed: HTML markup deleted, rules cleaned up. */

.services-hero .btn--secondary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(201, 170, 68, 0.6) 0%, 
        rgba(201, 170, 68, 0.5) 50%, 
        rgba(201, 170, 68, 0.4) 100%);
    border: 1px solid rgba(201, 170, 68, 0.6);
    box-shadow: 0 6px 25px rgba(201, 170, 68, 0.3);
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.process__card-container {
    max-width: 100%;
    width: 100%;
    background-color: var(--color-background);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.process__card-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.process__card-header {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 0;
    position: relative;
}

.process__number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    border-radius: 50%;
    margin: 1.5rem;
    box-shadow: var(--shadow-light);
    flex-shrink: 0;
}

.process__bullet {
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-radius: 0;
    position: relative;
    transform: none;
}

.process__bullet::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 4px;
    width: 0;
    height: 0;
    border-right: 8px solid var(--color-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.process__divider {
    flex: 1;
    height: 1px;
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
}

.process__divider-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 50%, 
        transparent 100%);
    animation: slideIn 2s ease-out forwards;
    animation-delay: 0.5s;
}

.process__card {
    padding: var(--spacing-xl);
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.process__icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.process__icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-secondary);
    transition: stroke var(--transition-fast);
}

.process__card-container:hover .process__icon svg {
    stroke: var(--color-primary);
}

.process__timeline {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-background);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--font-size-small);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.process__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.process__title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-heading);
}

.process__description {
    color: var(--color-text);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.process__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process__list li {
    position: relative;
    padding-left: var(--spacing-md);
    color: var(--color-text);
    font-size: var(--font-size-small);
    line-height: 1.5;
    margin-bottom: var(--spacing-xs);
}

.process__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ===========================
   TECHNOLOGY SECTION
   =========================== */
.technology {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background-light);
    overflow: hidden;
}

.technology__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.technology__category {
    text-align: center;
    overflow: hidden;
}

.technology__category-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-family-heading);
}

.technology__items {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Pause animation on hover */
.technology__items:hover {
    animation-play-state: paused;
}

/* Different speeds for each category */
.technology__category:nth-child(1) .technology__items {
    animation: scroll-left 40s linear infinite;
}

.technology__category:nth-child(2) .technology__items {
    animation: scroll-right 35s linear infinite;
}

.technology__category:nth-child(3) .technology__items {
    animation: scroll-left 50s linear infinite;
}

.technology__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background-color: var(--color-background);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
    cursor: pointer;
    flex-shrink: 0;
    min-width: 120px;
}

.technology__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    border-color: var(--color-primary);
}

.technology__icon {
    font-size: 3rem;
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

.technology__item:hover .technology__icon {
    color: var(--color-primary);
}

.technology__label {
    font-size: var(--font-size-small);
    font-weight: 500;
    color: var(--color-secondary);
    text-align: center;
}

/* Seamless infinite scroll animations */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.pricing__card {
    position: relative;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.pricing__card--featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.pricing__card--featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-background);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: var(--font-size-small);
    font-weight: 600;
}

.pricing__header {
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-lg);
}

.pricing__title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-family-heading);
}

.pricing__price {
    margin-bottom: var(--spacing-lg);
}

.pricing__amount {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-light);
    color: var(--color-primary);
    font-family: var(--font-family-heading);
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl) 0;
    text-align: left;
}

.pricing__features li {
    position: relative;
    padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-lg);
    color: var(--color-text);
    font-size: var(--font-size-body);
    line-height: 1.5;
    border-bottom: 1px solid var(--color-border);
}

.pricing__features li:last-child {
    border-bottom: none;
}

.pricing__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: bold;
}

.pricing__btn {
    width: 100%;
    margin-top: auto;
    /* Remove any custom styling to use site-wide button styles */
}

/* Ensure pricing buttons use consistent site styling */
.pricing__btn.btn--primary {
    /* Inherit all styles from main site buttons */
    background-color: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 25px;
    height: 50px;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing__btn.btn--primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-background);
    transform: none;
    box-shadow: none;
}

.pricing__btn.btn--primary svg {
    transition: transform var(--transition-fast);
    width: 12px;
    height: 12px;
}

.pricing__btn.btn--primary:hover svg {
    transform: translateX(2px);
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background-light);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.benefits__card-container {
    max-width: 100%;
    width: 100%;
    background-color: var(--color-background);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.benefits__card-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.benefits__card-header {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 0;
    position: relative;
}

.benefits__number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    border-radius: 50%;
    margin: 1.5rem;
    box-shadow: var(--shadow-light);
    flex-shrink: 0;
}

.benefits__bullet {
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-radius: 0;
    position: relative;
    transform: none;
}

.benefits__bullet::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 4px;
    width: 0;
    height: 0;
    border-right: 8px solid var(--color-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.benefits__divider {
    flex: 1;
    height: 1px;
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
}

.benefits__divider-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 50%, 
        transparent 100%);
    animation: slideIn 2s ease-out forwards;
    animation-delay: 0.5s;
}

.benefits__card {
    padding: var(--spacing-xl);
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.benefits__icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.benefits__icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-secondary);
    transition: stroke var(--transition-fast);
}

.benefits__card-container:hover .benefits__icon svg {
    stroke: var(--color-primary);
}

.benefits__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.benefits__title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-medium);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-heading);
}

.benefits__description {
    color: var(--color-text);
    font-size: var(--font-size-body);
    line-height: 1.6;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-background);
}

.faq__container {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.faq__item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq__item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-light);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--color-primary);
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    border-top: 1px solid var(--color-border);
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: var(--spacing-lg);
    margin: 0;
    color: var(--color-text);
    font-size: var(--font-size-body);
    line-height: 1.6;
}

/* ===========================
   SERVICES CTA SECTION
   =========================== */
.services-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-cta__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
    border: none;
}

.services-cta__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.services-cta__card-container {
    max-width: 600px;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(80, 80, 80, 0.6) 0%, 
        rgba(65, 65, 65, 0.5) 50%, 
        rgba(55, 55, 55, 0.4) 100%);
    backdrop-filter: blur(25px) brightness(0.9) saturate(120%);
    -webkit-backdrop-filter: blur(25px) brightness(0.9) saturate(120%);
    border-radius: 24px;
    border: 2px solid rgba(100, 100, 100, 0.3);
    overflow: visible;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(140, 140, 140, 0.2),
        inset 0 -1px 0 rgba(140, 140, 140, 0.1);
    margin: 0 auto 2rem auto;
    transform: translateX(-550px) translateY(-150px);
}

.services-cta__card-container:hover {
    background: linear-gradient(135deg, 
        rgba(90, 90, 90, 0.65) 0%, 
        rgba(75, 75, 75, 0.55) 50%, 
        rgba(65, 65, 65, 0.45) 100%);
    border-color: rgba(120, 120, 120, 0.4);
    box-shadow: 
        0 12px 50px rgba(0, 0, 0, 0.45),
        0 6px 25px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(160, 160, 160, 0.3),
        inset 0 -1px 0 rgba(160, 160, 160, 0.15);
}

.services-cta__card-header {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta__number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 70, 70, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    margin: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    border: 1px solid rgba(100, 100, 100, 0.4);
    position: relative;
}

.services-cta__bullet {
    width: 16px;
    height: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-cta__bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 6px solid rgba(200, 200, 200, 0.9);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.services-cta__bullet::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(200, 200, 200, 0.9);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.services-cta__divider {
    flex: 1;
    height: 1px;
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
}

.services-cta__divider-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(180, 180, 180, 0.8) 50%, 
        transparent 100%);
    animation: slideIn 2s ease-out forwards;
    animation-delay: 0.5s;
}

.services-cta__card {
    background: transparent;
    padding: var(--spacing-xl);
    border-radius: 0;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.services-cta__icon {
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.services-cta__icon svg {
    width: 80px;
    height: 80px;
    stroke: rgba(200, 200, 200, 0.8);
    transition: stroke var(--transition-fast);
}

.services-cta__card-container:hover .services-cta__icon svg {
    stroke: rgba(220, 220, 220, 1);
}

.services-cta__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.services-cta__title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-light);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-heading);
}

.services-cta__description {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.services-cta__actions {
    position: relative;
    z-index: 4;
    margin-top: 2rem;
}

/* Enhanced button styling - matching showcase button */
.services-cta .btn--primary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    border-radius: 25px;
    min-height: auto;
    height: 50px;
}

.services-cta .btn--primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-background);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 170, 68, 0.3);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
    .process__grid,
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .pricing__card--featured {
        transform: none;
    }

    .pricing__card--featured:hover {
        transform: translateY(-5px);
    }

    .technology__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-hero {
        min-height: 80vh;
        padding: calc(100px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
    }

    .services-hero__content {
        margin-top: 10vh;
        text-align: center;
    }

    .services-hero__title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .services-hero__subtitle {
        font-size: var(--font-size-base);
    }

    .services-hero__overlay {
        background: linear-gradient(
            135deg,
            rgba(50, 50, 50, 0.8) 0%,
            rgba(50, 50, 50, 0.5) 30%,
            rgba(201, 170, 68, 0.3) 60%,
            rgba(50, 50, 50, 0.7) 100%
        );
    }

    .process__number,
    .benefits__number {
        width: 50px;
        height: 50px;
        margin: 1rem;
    }

    .process__icon svg,
    .benefits__icon svg {
        width: 60px;
        height: 60px;
    }

    .process__card,
    .benefits__card {
        padding: var(--spacing-lg);
    }

    .technology__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .technology__icon {
        font-size: 2.5rem;
    }

    .pricing__grid {
        gap: var(--spacing-md);
    }

    .services-cta {
        min-height: 80vh;
    }

    .services-cta__overlay {
        height: 60%;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .services-cta__card-container {
        max-width: 95%;
        margin: 0 auto;
        transform: none;
    }

    .services-cta__card-container:hover {
        transform: scale(1.02);
    }

    .services-cta__card {
        padding: var(--spacing-lg);
    }

    .services-cta__number {
        width: 50px;
        height: 50px;
        margin: 1rem;
    }

    .services-cta__icon svg {
        width: 60px;
        height: 60px;
    }

    .services-cta__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .services-cta__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile pricing button optimization */
    .pricing__btn.btn--primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        height: 44px;
        letter-spacing: 1px;
    }
    
    .pricing__btn.btn--primary svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .technology__items {
        grid-template-columns: 1fr;
    }

    .faq__question {
        padding: var(--spacing-md);
        font-size: var(--font-size-small);
    }

    .faq__answer p {
        padding: var(--spacing-md);
        font-size: var(--font-size-small);
    }
}

/* ===========================
   ACCESSIBILITY & ANIMATIONS
   =========================== */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .process__divider-line,
    .benefits__divider-line,
    .services-cta__divider-line {
        animation: none;
        left: 0;
    }

    .process__card-container,
    .benefits__card-container,
    .pricing__card,
    .technology__item,
    .faq__item {
        transition: none;
    }
}

/* Focus styles for accessibility */
.faq__question:focus,
.pricing__btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Animated background responsive adjustments */
@media (max-width: 768px) {
    .services-background__shape {
        animation-duration: 15s;
    }
    
    .services-background__shape--1 {
        width: 200px;
        height: 200px;
    }
    
    .services-background__shape--2 {
        width: 150px;
        height: 150px;
    }
    
    .services-background__shape--3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .services-background,
    .services-background__shape {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .process__card-container,
    .benefits__card-container,
    .pricing__card,
    .technology__item,
    .faq__item {
        border-width: 2px;
    }
}

/* ===========================
   TITLE CASE STYLING
   Ensure all headers use title case (first letter uppercase only)
   =========================== */
h1, h2, h3, h4, h5, h6,
.services-hero__title,
.process__title,
.technology__category-title,
.pricing__title,
.benefits__title,
.services-cta__title,
.section__title {
    text-transform: none !important;
}
