/* ============================================
   Services Page Styles
   ============================================ */

/* ============================================
   Hero Section
   ============================================ */

.cx-top {
    height: 0px;
}

.cx-header-warpper {
    background-color: none !important;
}

.cx-services-hero {
    background-image: url(../img/services/hero/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 95vh;
    display: flex;
    align-items: center;
}

/* Two-column layout */
.cx-services-hero-inner {
    display: flex;
    /* align-items: center; */
    gap: 40px;
    margin-top: 50px;
}

/* Left column */
.cx-services-hero-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
}

.cx-services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    width: fit-content;
    background: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    margin-bottom: 12px;
    position: relative; 
}

.cx-services-hero-badge::before {
    content: '';
    position: absolute;
    inset: -0.5px;
    border-radius: 8px;
    padding: 0.5px;
    background: linear-gradient(
        135deg,                          
        rgba(255, 255, 255, 0.54) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.54) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cx-services-hero-badge img {
    width: 104px;
    height: 29px;
}

.cx-services-hero-badge-tag {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 500;
    color: #ebfe5b;
}

/* Heading */
.cx-services-hero-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 70px;
    color: #fff;
    margin-bottom: 32px;
}

.cx-services-hero-highlight {
    color: #EBFE5B;
}

/* Subtitle */
.cx-services-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #E1E1E1;
    margin-bottom: 52px;
    max-width: 680px;
}

/* CTA buttons */
.cx-services-hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cx-services-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    background: #EBFE5B;
    border: 1px ;
    font-size: 16px;
    font-weight: 600;
    height: 60px;
    width: 205px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.6s ease;
}

.cx-services-hero-btn--primary:hover {
    background: #CDE22E;
    border: 1px solid #CDE22E;
}

.cx-services-hero-btn svg {
    transition: transform 0.4s ease;
}

.cx-services-hero-btn:hover svg {
    transform: rotate(45deg);
}

.cx-services-hero-btn--primary {
    background: #ebfe5b;
    color: #121212;
    border: 1px solid #ebfe5b;
}

.cx-services-hero-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
}

.cx-services-hero-btn--outline:hover {
    color: #EBFE5B;
    border: 1px solid #EBFE5B;
}

.cx-services-hero-btn--outline:active {
    color: #EBFE5B;
    border: 1px solid #EBFE5B;
}

.cx-services-hero-btn--outline:focus {
    color: #EBFE5B;
    border: 1px solid #EBFE5B;
    outline: none;
}

/* Right column — stats grid */


.cx-services-hero-stats {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 483px;
    height: 293px;
    margin-top: 86px;
}

.cx-services-stat-card {
    background: linear-gradient(
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.cx-services-stat-card::before {
    content: '';
    position: absolute;
    inset: -0.5px;
    border-radius: 12px;
    padding: 0.5px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.54) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.54) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.cx-services-stat-number,
.cx-services-stat-label {
    position: relative;
    z-index: 1;
}

.cx-services-stat-number {
    font-family: 'Roboto Slab', serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0 0 10px;
}

.cx-services-stat-highlight {
    color: #ebfe5b;
}

.cx-services-stat-label {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   Tech Stack Section
   ============================================ */

.cx-tech-stack {
    padding: 140px 0;
    background: #fff;
}

.cx-tech-stack-header {
    text-align: center;
    max-width: 910px;
    margin: 0 auto 70px;
}

.cx-tech-stack-title {
    font-family: 'Roboto Slab', serif;
    font-size: 40px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.25;
    margin: 0 0 16px;
}

.cx-tech-stack-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: #454556;
    margin: 0;
}

.cx-tech-stack-logos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cx-tech-stack-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cx-tech-stack-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.cx-tech-stack-logo img {
    display: block;
    max-width: 100%;
}

.cx-tech-stack-logo .cx-tech-stack-logo-1 {
    width: 190px;
    height: 35px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-2 {
    width: 90px;
    height: 45px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-3 {
    width: 178px;
    height: 28px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-4 {
    width: 158px;
    height: 28px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-5 {
    width: 112px !important;
    height: 48px !important; 
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-6 {
    width: 167px !important;
    height: 40px !important;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-7 {
    width: 190px;
    height: 40px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-8 {
    width: 102px;
    height: 40px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-9 {
    width: 230px;
    height: 32px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-10 {
    width: 130px;
    height: 36px;
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-11 {
    width: 120px !important;
    height: 58px !important; 
    object-fit: contain;
}

.cx-tech-stack-logo .cx-tech-stack-logo-12 {
    width: 193px !important;
    height: 33px !important;
    object-fit: contain;
}

.cx-services-page-title {
    padding: 60px 0 40px;
    text-align: center;
}

.cx-services-subtitle {
    max-width: 640px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Services Grid */
.cx-services-section {
    padding: 60px 0 80px;
}

.cx-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cx-service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 36px 30px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cx-service-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.cx-service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.cx-service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cx-service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cx-service-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

/* Process Section */
.cx-services-process {
    padding: 70px 0 80px;
    background: #f8f9ff;
}

.cx-services-process-title {
    margin-bottom: 50px;
}

.cx-services-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.cx-process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.cx-process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c63ff, #3b82f6);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.cx-process-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.cx-process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.cx-process-step-divider {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    background: #ddd;
    margin-top: 30px;
    align-self: flex-start;
}

/* CTA — inherits cx-about-apply base styles, minor overrides */
.cx-services-cta {
    text-align: center;
}

/* ============================================
   Client Reviews Section
   ============================================ */

.cx-reviews {
    padding: 140px;
    background: #fff;
}

/* Section header */
.cx-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
    gap: 12px;
    position: relative;
}

.cx-reviews-header .cx-services-title-underline {
    position: absolute;
    width: 290px;
    height: 32px;
    top: 115px;
    right: 362px;
}

.cx-reviews-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.88px;
    padding: 4px 16px;
    border-radius: 44px;
    white-space: nowrap;
}

.cx-reviews-title {
    font-family: 'Roboto Slab', serif;
    font-size: 64px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    line-height: 1.1;
    margin: 0;
}


/* Reviews grid */
.cx-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Review card */
.cx-review-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Stars */
.cx-review-stars {
    display: flex;
    align-items: center;
    gap: 0;
}

.cx-review-star {
    width: 20px;
    height: 19px;
    display: block;
    flex-shrink: 0;
}

/* Review text */
.cx-review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1b25;
    line-height: 26px;
    flex: 1;
    margin: 0;
}

/* Author */
.cx-reviews-grid .cx-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    margin-bottom: 0px;
}

.cx-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: #eeecfa;
    flex-shrink: 0;
}

.cx-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cx-review-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cx-review-name {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1b25;
    line-height: 24px;
    margin: 0;
}

.cx-review-role {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #757688;
    text-transform: uppercase;
    line-height: 16px;
    margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */

.cx-services-faq {
    padding: 120px;
    background: #f9f9f9;
}

/* Header */
.cx-faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 120px;
    position: relative;
}

.cx-faq-header .cx-services-title-underline {
    position: absolute;
    width: 290px;
    height: 32px;
    top: 110px;
    right: 230px;
}

.cx-faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.88px;
    padding: 4px 16px;
    border-radius: 44px;
    white-space: nowrap;
}

.cx-faq-title {
    font-family: 'Roboto Slab', serif;
    font-size: 64px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    line-height: 1.15;
    margin: 0;
}


/* Accordion list */
.cx-faq-list {
    display: flex;
    flex-direction: column;
    max-width: 874px;
    margin: 0 auto;
}

/* Accordion item */
.cx-faq-item {
    background: #fff;
    border: 1px solid #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}


/* Question button */
.cx-services-faq .cx-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 70px;
    padding: 20px 36px;
    background: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.cx-services-faq .cx-faq-question span:first-child {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    line-height: 30px;
}

.cx-faq-item.active .cx-faq-question span:first-child {
    font-weight: 700;
}

.cx-services-faq .cx-faq-item.cx-faq-item--open .cx-faq-question span:first-child {
    font-weight: 700;
}

/* +/- icon */
.cx-faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
    transition: all 0.3s ease;
}

.cx-faq-item:hover .cx-faq-icon {
    background: #EAEAEA;
    border-radius: 50%;
}

.cx-faq-icon::before,
.cx-faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #121212;
    border-radius: 16px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* horizontal bar */
.cx-faq-icon::before {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

/* vertical bar (hidden when open) */
.cx-faq-icon::after {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.cx-faq-item--open .cx-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer panel */
.cx-faq-answer {
    padding: 0 40px 28px;
}

.cx-faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #382e48;
    line-height: 26px;
    margin: 0;
    max-width: 675px;
}

/* ============================================
   Final CTA Section
   ============================================ */

.cx-final-cta {
    padding-top: 140px;
    padding-bottom: 40px;
}

.cx-final-cta-card {
    background-image: url(../img/services/final-cta/cta-bg.jpg);
    background-size: cover;
    box-shadow: 0px 25px 50px -12px #00000040;
    border-radius: 24px;
    width: 100%;
}

/* Content */
.cx-final-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px;
}

.cx-final-cta-title {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 58px;
    letter-spacing: -1.2px;
    max-width: 700px;
    margin: 0;
}

.cx-final-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 28px;
    max-width: 672px;
    margin-top: 24px;
    margin-bottom: 0;
}

/* Button */

.cx-final-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #EBFE5B;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 205px;
    height: 60px;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-top: 32px;
}

.cx-final-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-42.72deg);
    flex-shrink: 0;
}

.cx-final-cta-btn:hover {
   background: #CDE22E;
}

.cx-final-cta-btn:hover svg {
    transform: rotate(45deg);
}



/* ============================================
   CTA Estimate Section
   ============================================ */

.cx-cta-estimate {
    padding: 120px 0;
    background: #151958;
}

/* Two-column layout */
.cx-cta-inner {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

/* ---- Left column ---- */
.cx-cta-left {
    flex: 0 0 573px;
    display: flex;
    flex-direction: column;
   
}

.cx-cta-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cx-cta-title {
    font-family: 'Roboto Slab', serif;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 65px;
    margin: 0;
}

.cx-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #e9e9e9;
    line-height: 1.55;
    margin: 0;
}

/* Contact card */
.cx-cta-contact {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cx-cta-contact-label {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ebfe5b;
    margin: 0;
    line-height: 1;
}

.cx-cta-contact-card {
    display: flex;
    align-items: center;
    gap: 19px;
    background: rgba(44, 48, 104, 0.94);
    border-radius: 8px;
    padding: 20px;
    max-width: 524px;
}

.cx-cta-contact-photo {
    flex-shrink: 0;
    width: 133px;
    height: 125px;
    border-radius: 8px;
    overflow: hidden;
}

.cx-cta-contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.cx-cta-contact-info {
    display: flex;
    flex-direction: column;
}

.cx-cta-contact-name {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.cx-cta-contact-role {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #e9e9e9;
    margin-bottom: 14px;
    line-height: 1;
}

.cx-cta-contact-book {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ebfe5b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cx-cta-contact-book:hover {
    color: #ebfe5b;
    opacity: 0.85;
    text-decoration: underline;
}

.cx-cta-contact-book:focus {
    color: #ebfe5b;
    outline: none;
}

/* ---- Right: Form card ---- */
.cx-cta-form-wrap {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cx-cta-form-header {
    padding-bottom: 24px;
    border-bottom: 1px solid #e3e3e3;
}

.cx-cta-form-title {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.cx-cta-form-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Service selector */
.cx-cta-field-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1b1b1b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.cx-cta-service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.cx-cta-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 158px;
    height: 36px;
    padding: 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1b1b1b;
    background: transparent;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.cx-cta-service-btn:hover {
    border-color: #aaa;
}

.cx-cta-service-btn--active {
    background: #ebfe5b;
    border-color: #e3e3e3;
    color: #121212;
    font-weight: 600;
}

/* Price box */
.cx-cta-price-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 18px 20px;
    min-height: 112px;
    margin: 24px 0;
}

.cx-cta-price-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cx-cta-price-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #1b1b1b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.cx-cta-price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.cx-cta-price-value {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.cx-cta-price-unit {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
}

.cx-cta-price-note {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #1b1b1b;
    display: block;
    margin-top: 4px;
}

.cx-cta-price-right {
    text-align: right;
    max-width: 200px;
}

.cx-cta-price-includes {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #1b1b1b;
    line-height: 1.6;
    margin: 0;
}

/* Form inputs */
.cx-cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 24px;
}

.cx-cta-field-form-header {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1b1b1b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 24px;
    /* margin: 0 0 16px; */
}

.cx-cta-form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.cx-cta-input,
.cx-cta-textarea {
    width: 100%;
    height: 38px !important;
    background: #f9f9f9 !important;
    border: 1px solid #E3E3E3 !important;
    border-radius: 6px !important;
    padding: 10px 12px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400;
    color: #1b1b1b !important;
    transition: border-color 0.2s ease;
    outline: none !important;
    box-sizing: border-box;
}

.cx-cta-input::placeholder,
.cx-cta-textarea::placeholder {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    color: #6a7282 !important;
}

.cx-cta-input:focus,
.cx-cta-textarea:focus {
    border: 1px solid #121212 !important;
}

.cx-cta-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit */
.cx-cta-form-submit {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cx-cta-submit-btn {
    width: 100%;
    background: #ebfe5b;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: 14px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cx-cta-submit-btn:hover {
    background: #ebfe5b !important;
}

.cx-cta-submit-note {
    font-family: 'Poppins', sans-serif;
    font-size: 10px !important;
    font-weight: 400;
    color: #6a7282;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.cx-cta-submit-note strong {
    color: #121212;
    font-weight: 600;
}

/* Plugin Dev extra fields */
.cx-cta-plugin-fields {
    display: none;
}

.cx-cta-plugin-dropdowns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.cx-cta-plugin-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cx-cta-plugin-field-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #6a7282;
}

.cx-cta-plugin-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%231f1f1f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 9px 32px 9px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #6a7282;
    cursor: pointer;
    transition: border-color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cx-cta-plugin-select:focus {
    outline: none;
    border-color: #121212;
    color: #121212;
}

/* Estimated cost box */
.cx-cta-estimated-cost-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 24px;
}

.cx-cta-ec-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cx-cta-ec-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #6a7282;
}

.cx-cta-ec-amount {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #121212;
    line-height: 1.1;
}

.cx-cta-ec-note {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #6a7282;
    margin-top: 2px;
}

.cx-cta-ec-right {
    flex-shrink: 0;
}

.cx-cta-ec-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1.3;
}

.cx-cta-ec-badge:empty {
    display: none;
}

/* ============================================
   How It Works Section
   ============================================ */

.cx-how-it-works {
    padding: 140px 0px;
    background: #fff;
}

/* Section header */
.cx-how-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.cx-how-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.88px;
    padding: 4px 16px;
    border-radius: 44px;
    margin-bottom: 12px;
}

.cx-how-title {
    font-family: 'Roboto Slab', serif;
    font-size: 64px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    margin: 0;
}

.cx-how-header .cx-services-title-underline {
    position: absolute;
    width: 290px;
    height: 32px;
    top: 114px;
    right: 252px;
}

/* Steps container */
.cx-how-steps {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    padding-top: 50px; /* space for overflowing badges */
}

/* Horizontal connector line — sits behind cards, visible only in gaps */
.cx-how-progress-line {
    position: absolute;
    top: 158px; 
    left: 0;
    right: 0;
    height: 2px;
    background: #e9e7f5;
    z-index: 0;
    pointer-events: none;
}

/* Individual step card */
.cx-how-step {
    flex: 1;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 75px 24px 44px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Number badge */
.cx-how-step-badge {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 69px;
    height: 69px;
    background: #131b77;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    z-index: 2;
}

.cx-how-step-title {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1b25;
    margin: 0 0 8px;
    line-height: 1.4;
}

.cx-how-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454556;
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   Why Codexpert Section
   ============================================ */

.cx-why-codexpert {
    padding: 120px;
    background: #f9f9f9;
}

/* Section header */
.cx-why-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.cx-why-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.88px;
    padding: 4px 16px;
    border-radius: 44px;
    margin-bottom: 12px;
}

.cx-why-title {
    font-family: 'Roboto Slab', serif;
    text-transform: capitalize;
    font-size: 64px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    margin: 0;
}

.cx-why-title-underline {
    position: relative;
    display: inline-block;
}

.cx-why-title-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 78%;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='14' viewBox='0 0 300 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9.5C40 3.5 80 3.5 120 9C160 14.5 200 14.5 240 9C265 5.5 280 4 298 6' stroke='%23c0c7ff' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% auto;
    pointer-events: none;
}

/* Two-column layout */
.cx-why-inner {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

/* ---- Left column ---- */
.cx-why-left {
    flex: 0 0 568px;
}

.cx-why-image-wrap {
    position: relative;
    width: 550px;
}

.cx-why-image {
    display: block;
    width: 550px;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e3e3;
}

/* Floating testimonial card */
.cx-why-testimonial {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 33px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.10), 0 8px 10px -6px rgba(0,0,0,0.10);
}

.cx-why-testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454556;
    line-height: 1.5;
    margin: 0 0 16px;
    font-style: normal;
}

.cx-why-testimonial-name {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1b25;
    margin: 0 0 4px;
    line-height: 1.5;
}

.cx-why-testimonial-role {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #757688;
    margin: 0;
    line-height: 1.4;
}

/* ---- Right column ---- */
.cx-why-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 8px;
}

/* Feature items */
.cx-why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cx-why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cx-why-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-top: 2px;
}

.cx-why-feature-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cx-why-feature-title {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1b25;
    margin: 0;
    line-height: 1.55;
}

.cx-why-feature-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454556;
    line-height: 1.5;
    margin: 0;
}

/* Our Products */
.cx-why-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cx-why-products-title {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1b25;
    margin: 0;
    line-height: 1.33;
}

.cx-why-products-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Product badge base */


.cx-why-product-logo {
    width: 107px;
    height: 64px;
    object-fit: contain;
}

.cx-why-product-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.cx-why-product-name {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2b2626;
    white-space: nowrap;
}

/* ThumbPress special icon (colored circle) */
.cx-why-product-thumb-icon {
    width: 15px;
    height: 15px;
    background: #40189d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.cx-why-product-thumb-icon img {
    width: 8px;
    height: 8px;
    object-fit: contain;
}

.cx-why-product-badge--indigo .cx-why-product-name {
    font-weight: 600;
    font-size: 11px;
}

.cx-why-products-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454556;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   Services List Section
   ============================================ */

.cx-services-list-section {
    padding-bottom: 140px;
    background: #fff;
}

/* Section header */
.cx-services-list-header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
}

.cx-services-list-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.88px;
    padding: 4px 16px;
    border-radius: 44px;
    margin-bottom: 16px;
}

.cx-services-list-title {
    font-family: 'Roboto Slab', serif;
    text-transform: capitalize;
    font-size: 64px;
    font-weight: 700;
    color: #2C2C2C;
    line-height: 1.2;
    margin: 0;
}

.cx-services-title-underline {
    position: absolute;
    width: 290px;
    height: 32px;
    top: 192px;
    right: 328px;
}


/* Filter tabs */
.cx-services-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 70px 0px;
}

.cx-services-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b1b;
    background: transparent;
    border: 2px solid #e3e3e3;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.cx-services-filter-btn:hover {
    border: 2px solid #aaa;
    background: transparent;
    color: #1b1b1b;
}

.cx-services-filter-btn--active,
.cx-services-filter-btn:focus {
    background: transparent;
    border: 2px solid #33352f;
    color: #121212;
}


.cx-services-filter-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b1b;
    background: transparent;
    border: 2px solid #e3e3e3;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.cx-services-filter-tab-btn:hover {
    border: 2px solid #aaa;
    background: transparent;
    color: #1b1b1b;
}

.cx-services-filter-tab-btn--active,
.cx-services-filter-tab-btn:focus {
    background: transparent;
    border: 2px solid #33352f;
    color: #121212;
    font-weight: 600;
}


/* Service cards list */
.cx-services-cards {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

/* Individual card */
.cx-service-card-item {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 60px;
    overflow: hidden;
    min-height: 648px;
}

/* Reverse layout: image on right */
.cx-service-card-item--reverse {
    flex-direction: row-reverse;
}

/* Image column */
.cx-service-card-image {
    flex: 0 0 550px;
    height: 540px;
    position: relative;
    overflow: hidden;
    align-self: stretch;
}

.cx-service-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    /* transform: rotate-(180deg); */
}

/* Content column */
.cx-service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
}

.cx-service-card-heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}

.cx-service-card-heading .cx-service-card-title-wrapper {
    display: flex;
    align-items: center;
    
    gap: 8px;
}

.cx-service-card-title {
    font-family: 'Roboto Slab', serif;
    font-size: 40px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.29;
    margin: 0;
}

.cx-service-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1B1B1B;
    line-height: 1.625;
    margin: 0;
}

/* Accordion feature list */
.cx-service-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.cx-service-card-feature {
    border-bottom: 1px solid #f4f4f4;
}

.cx-service-card-feature-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1919;
    text-align: left;
    gap: 12px;
}

/* + / - icon */
.cx-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
   
    /* border-radius: 18px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cx-service-card-feature:hover .cx-feature-icon {
    background: #EAEAEA;
    border-radius: 50%;
}

.cx-feature-icon::before,
.cx-feature-icon::after {
    content: '';
    position: absolute;
    background: #121212;
    border-radius: 2px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Horizontal bar (always visible) */
.cx-feature-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical bar (visible when collapsed = shows +) */
.cx-feature-icon::after {
    width: 2px;
    height: 14px;
}

/* When open: hide vertical bar to show - */
.cx-service-card-feature--open .cx-feature-icon::after {
    opacity: 0;
    transform: scaleY(0);
}

/* Expanded body text */
.cx-service-card-feature-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1b1b1b;
    line-height: 1.625;
    margin: 0;
    padding: 0 0 14px;
    display: none;
}

.cx-service-card-feature--open .cx-service-card-feature-body {
    display: block;
}

.cx-service-card-feature--open .cx-service-card-feature-toggle span:first-child {
    font-weight: 700;
}


button:hover,
button:focus {
    color: #1A1919 !important;
    background-color: #ffffff !important;
}

/* Book Now CTA */
.cx-service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EBFE5B;
    color: #121212;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 4px;
    white-space: nowrap;
    transition: all 0.6s ease;
}

.cx-service-card-cta:hover {
   background: #CDE22E;
   color:#121212
}

.cx-service-card-cta svg {
    transition: transform 0.4s ease;
}

.cx-service-card-cta:hover svg {
    transform: rotate(45deg);
}

.cx-input-error {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

.cx-field-error {
    display: block;
    color: #e53e3e;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

/* Form result messages */
.cx-form-result {
    margin-top: 16px;
}

.cx-submit-success {
    padding:5px 10px;
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 6px;
}

.cx-submit-success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #16a34a;
    margin: 0 0 4px;
}

.cx-submit-success-msg {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #15803d;
    margin: 0;
}

.cx-submit-error {
    padding: 16px 20px;
    background: #fff5f5;
    border: 1px solid #e53e3e;
    border-radius: 6px;
}

.cx-submit-error-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e53e3e;
    margin: 0 0 4px;
}

.cx-submit-error-msg {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #c53030;
    margin: 0;
}



/* Sticky filter bar */

body.admin-bar .cx-sticky-filter-bar {
    top: 32px !important;
}

.cx-sticky-filter-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
    background: #00042D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    display: none; /* hidden by default */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cx-sticky-filter-bar.cx-sticky-filter-bar--visible {
    display: block;
}

.cx-sticky-filter-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;          
    overflow-x: auto;           
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch; 
}

.cx-sticky-filter-inner::-webkit-scrollbar {
    display: none;
}

.cx-sticky-filter-inner::-webkit-scrollbar {
    display: none;
}

/* Override filter btn colors for dark background */
.cx-sticky-filter-bar .cx-services-filter-btn {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

/* .cx-sticky-filter-bar .cx-services-filter-btn:hover {
    background: #ebfe5b;
    border-color: #ebfe5b;
    color: #121212;
}

.cx-sticky-filter-bar .cx-services-filter-btn--active {
    background: #ebfe5b;
    border-color: #ebfe5b;
    color: #121212;
} */

.cx-sticky-filter-bar .cx-services-filter-btn:hover,
.cx-sticky-filter-bar .cx-services-filter-btn:focus {
    background: #ebfe5b !important;
    color: #121212 !important;
}

.cx-sticky-filter-bar .cx-services-filter-btn--active {
    background: #ebfe5b !important;
    color: #121212 !important;
}

/* Hide main header when sticky filter bar is visible */
.cx-header-warpper.cx-header-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.cx-header-warpper {
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}



/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* ---- Tablet: 1024px ---- */
@media (max-width: 1024px) {

    /* Hero */
    .cx-services-hero {
        height: auto;
        padding: 80px 0;
    }

    .cx-services-hero-inner {
        padding-top: 50px;
        flex-direction: column;
        gap: 40px;
    }

    .cx-services-hero-heading {
        font-size: 40px;
        line-height: 54px;
    }

    .cx-services-hero-stats {
        width: 100%;
        height: auto;
    }

    /* Tech Stack */
    .cx-tech-stack {
        padding: 80px 0;
    }

    .cx-tech-stack-title {
        font-size: 32px;
    }

    .cx-tech-stack-desc {
        font-size: 16px;
    }

    /* Reviews */
    .cx-reviews {
        padding: 80px 40px;
    }

    .cx-reviews-title {
        font-size: 48px;
    }

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

    /* FAQ */
    .cx-services-faq {
        padding: 80px 40px;
    }

    .cx-faq-title {
        font-size: 48px;
    }

    /* How It Works */
    .cx-how-it-works {
        padding: 80px 0;
    }

    .cx-how-title {
        font-size: 48px;
    }

    /* Why Codexpert */
    .cx-why-codexpert {
        padding: 80px 40px;
    }

    .cx-why-title {
        font-size: 48px;
    }

    .cx-why-inner {
        gap: 40px;
    }

    .cx-why-left {
        flex: 0 0 340px;
    }

    .cx-why-image-wrap,
    .cx-why-image {
        width: 100%;
        height: auto;
    }

    /* Services List */
    .cx-services-list-title {
        font-size: 48px;
    }

    .cx-service-card-item {
        gap: 40px;
        padding: 40px;
        min-height: auto;
    }

    .cx-service-card-image {
        flex: 0 0 340px;
    }

    .cx-service-card-title {
        font-size: 32px;
    }

    /* CTA Estimate */
    .cx-cta-estimate {
        padding: 80px 0;
    }

    .cx-cta-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cx-cta-left {
        flex: none;
        width: 100%;
    }

    .cx-cta-title {
        font-size: 38px;
        line-height: 52px;
    }

    .cx-cta-contact {
        margin-top: 32px;
    }

    /* Final CTA */
    .cx-final-cta {
        padding-top: 80px;
    }

    .cx-final-cta-title {
        font-size: 38px;
        line-height: 48px;
    }

    .cx-services-title-underline {
        top: 155px;
        right: 117px;
    }

    .cx-why-header .cx-services-title-underline {
        top: 154px;
        right: 110px;
    }

    .cx-how-header .cx-services-title-underline {
        top: 98px;
        right: 207px;
    }

    .cx-reviews-header .cx-services-title-underline {
        top: 87px;
        right: 74px;
    }

    .cx-faq-header .cx-services-title-underline {
        top: 88px;
        right: -19px;
    }

    .cx-sticky-filter-inner {
        justify-content: flex-start;
        padding: 0 16px;
    }
}

/* ---- Mobile: 768px ---- */
@media (max-width: 768px) {

    /* Hero */
    .cx-services-hero {
        padding: 60px 0;
        height: auto;
    }

    .cx-services-hero-heading {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .cx-services-hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cx-services-hero-actions {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .cx-services-hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .cx-services-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cx-services-stat-number {
        font-size: 36px;
    }

    /* Tech Stack */
    .cx-tech-stack {
        padding: 60px 0;
    }

    .cx-tech-stack-title {
        font-size: 26px;
    }

    .cx-tech-stack-desc {
        font-size: 15px;
    }

    .cx-tech-stack-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .cx-tech-stack-logo img {
        max-width: 100px;
        height: auto !important;
    }

    /* Reviews */
    .cx-reviews {
        padding: 60px 20px;
    }

    .cx-reviews-header {
        margin-bottom: 60px;
    }

    .cx-reviews-title {
        font-size: 36px;
    }

    .cx-reviews-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .cx-services-faq {
        padding: 60px 20px;
    }

    .cx-faq-header {
        margin-bottom: 60px;
    }

    .cx-faq-title {
        font-size: 36px;
    }

    .cx-services-faq .cx-faq-question {
        padding: 16px 20px;
    }

    .cx-faq-answer {
        padding: 0 20px 20px;
    }

    /* How It Works */
    .cx-how-it-works {
        padding: 60px 0;
    }

    .cx-how-title {
        font-size: 36px;
    }

    .cx-how-steps {
        flex-direction: column;
        gap: 48px;
        padding-top: 20px;
    }

    .cx-how-progress-line {
        display: none;
    }

    .cx-how-step {
        padding: 70px 20px 32px;
    }

    /* Why Codexpert */
    .cx-why-codexpert {
        padding: 60px 20px;
    }

    .cx-why-title {
        font-size: 36px;
    }

    .cx-why-header {
        margin-bottom: 48px;
    }

    .cx-why-inner {
        flex-direction: column;
        gap: 32px;
    }

    .cx-why-left {
        flex: none;
        width: 100%;
    }

    .cx-why-image-wrap {
        width: 100%;
    }

    .cx-why-image {
        width: 100%;
        height: 300px;
    }

    .cx-why-testimonial {
        position: static;
        width: 100%;
        margin-top: 16px;
        box-sizing: border-box;
    }

    /* Services List */
    .cx-services-list-section {
        padding-bottom: 80px;
    }

    .cx-services-list-title {
        font-size: 36px;
    }

    .cx-services-filter {
        margin: 40px 0;
        gap: 10px;
    }

    .cx-services-cards {
        gap: 60px;
    }

    .cx-service-card-item,
    .cx-service-card-item--reverse {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        min-height: auto;
    }

    .cx-service-card-image {
        flex: none;
        width: 100%;
        height: 240px;
        position: relative;
    }

    .cx-service-card-title {
        font-size: 26px;
    }

    .cx-service-card-desc {
        font-size: 14px;
    }

    /* CTA Estimate */
    .cx-cta-estimate {
        padding: 60px 0;
    }

    .cx-cta-title {
        font-size: 28px;
        line-height: 40px;
    }

    .cx-cta-desc {
        font-size: 15px;
    }

    .cx-cta-contact-card {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
    }

    .cx-cta-contact-photo {
        width: 80px;
        height: 80px;
    }

    .cx-cta-contact-name {
        font-size: 22px;
    }

    .cx-cta-service-options {
        gap: 8px;
    }

    .cx-cta-service-btn {
        width: calc(50% - 5px);
        font-size: 11px;
    }

    .cx-cta-plugin-dropdowns {
        grid-template-columns: 1fr;
    }

    .cx-cta-price-box {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .cx-cta-price-right {
        text-align: left;
        max-width: 100%;
    }

    .cx-cta-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Final CTA */
    .cx-final-cta {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .cx-final-cta-inner {
        padding: 40px 24px;
    }

    .cx-final-cta-title {
        font-size: 28px;
        line-height: 38px;
    }

    .cx-final-cta-desc {
        font-size: 16px;
    }

    .cx-sticky-filter-bar {
        padding: 10px 0;
    }

    .cx-sticky-filter-inner {
        justify-content: flex-start;
        padding: 0 16px;
        gap: 6px;
    }

    .cx-sticky-filter-bar .cx-services-filter-btn {
        font-size: 11px;
        height: 32px;
        padding: 0 10px;
        flex-shrink: 0;
    }
}

/* ---- Small Mobile: 480px ---- */
@media (max-width: 480px) {

    .cx-services-hero-heading {
        font-size: 26px;
        line-height: 36px;
    }

    .cx-services-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cx-services-stat-number {
        font-size: 28px;
    }

    .cx-reviews-title,
    .cx-faq-title,
    .cx-how-title,
    .cx-why-title,
    .cx-services-list-title {
        font-size: 28px;
    }

    .cx-cta-service-btn {
        width: 100%;
    }

    .cx-cta-title {
        font-size: 24px;
        line-height: 34px;
    }

    .cx-final-cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    .cx-service-card-image {
        height: 200px;
    }

    .cx-service-card-title {
        font-size: 22px;
    }

    .cx-services-title-underline {
        top: 106px;
        right: 21px;
    }

    .cx-why-header .cx-services-title-underline {
        top: 106px;
        right: -15px;
    }

    .cx-how-header .cx-services-title-underline {
        top: 68px;
        right: 0px;
    }

    .cx-reviews-header .cx-services-title-underline {
        top: 66px;
        right: 0px;
    }

    .cx-faq-header .cx-services-title-underline {
        top: 88px;
        right: -19px;
    }

    .cx-tech-stack-logos {
        gap: 24px;
    }
}