/* ===== SERVICES PAGE STYLES ===== */
/* ============================================= */
/*              PARALLAX HERO - Services         */
/* ============================================= */

.parallax-hero {
    position: relative;
    height: 100vh;
    min-height: 780px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Replace this URL with your downloaded image path */
    background-image: url('https://images.unsplash.com/photo-1605152276897-4f618f831968?q=80&w=1470&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transform: translateZ(0);
    will-change: transform;
    z-index: 0;
}.parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    
    /* Basic parallax */
    transform: translateZ(0);
    will-change: transform;
}

/* JavaScript will enhance this for smoother movement */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
                rgba(0,0,0,0.82) 0%, 
                rgba(0,0,0,0.68) 45%, 
                rgba(0,0,0,0.82) 100%);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 4;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

/* Optional elegant bottom wave separator */
/* .parallax-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,197.3C96,171,192,117,288,117.3C384,117,480,171,576,181.3C672,192,768,160,864,154.7C960,149,1056,171,1152,181.3C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    z-index: 3;
    pointer-events: none;
} */

/* Mobile adjustments */
@media (max-width: 992px) {
    .parallax-hero {
        height: auto;
        min-height: 70vh;
        padding: 140px 0 100px;
    }
    
    .parallax-bg {
        background-attachment: scroll;
        background-position: center 45%;
    }
    
    .parallax-hero::after {
        height: 100px;
    }
}
/* Services Hero Banner */
/* Group the first 4 buttons */
.main-tabs-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-bottom: 35px;
}

/* Featured Consultations button */
.tab-button.consultations-featured {
    width: 100%;
    max-width: 580px;                /* ← makes it noticeably wider */
    padding: 28px 40px !important;
    font-size: 1.4rem !important;
    font-weight: 700;
    background: #000;
    color: white !important;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
    transition: all 0.35s ease;
    margin: 15px auto 45px;
    position: relative;
    overflow: hidden;
}

/* Hover & active state for featured button */
.tab-button.consultations-featured:hover,
.tab-button.consultations-featured.active {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
    background: #111;
}

.tab-button.consultations-featured i {
    font-size: 3rem !important;
    margin-bottom: 16px !important;
}

/* Make icon bigger only for featured button */
.tab-button.consultations-featured i.fa-2x {
    font-size: 3.2rem;
}

/* Optional: subtle shine effect on hover */
.tab-button.consultations-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.tab-button.consultations-featured:hover::before {
    left: 120%;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .main-tabs-group {
        gap: 12px 18px;
    }
    
    .tab-button.consultations-featured {
        max-width: 460px;
        padding: 24px 30px;
        font-size: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .tab-button.consultations-featured {
        max-width: 100%;
        padding: 20px 25px;
        font-size: 1.15rem !important;
    }
    
    .tab-button.consultations-featured i {
        font-size: 2.5rem !important;
    }
} 
.services-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url(https://images.unsplash.com/photo-1605152276897-4f618f831968?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3Dx ) center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-hero .container {
    position: relative;
    z-index: 3;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.page-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    animation: fadeIn 1s ease 0.6s both;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 1;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Section Title Styles */
.section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #000;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* Services Tabs */
.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: none;
    padding: 20px 25px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.tab-button i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #593737;
}

.tab-button:hover {
    background: #000;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tab-button:hover i {
    color: white;
}

.tab-button.active {
    background: #000;
    color: white;
}

.tab-button.active i {
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Service Detail */
.service-detail {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-title h3 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.service-description {
    margin-bottom: 40px;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
    margin-bottom: 50px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Service Pricing */
.service-pricing {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
}

.service-pricing h4 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-option {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h5 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #000;
}

/* Consultation Options */
.consultation-options {
    margin-top: 50px;
}

.consultation-options h4 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended {
    border: 2px solid #000;
    transform: scale(1.05);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #000;
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-card-header {
    background: #000;
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-card-header h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.duration {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-card-body {
    padding: 30px;
}

.pricing-card-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card-body li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card-body li i {
    color: #000;
    margin-top: 3px;
}

.btn-book {
    display: block;
    width: 100%;
    background: #000;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.consultation-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
}

.consultation-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid #000;
}

.btn-primary:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* All Services Grid */
.all-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.service-card-content h4 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.service-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #333;
    gap: 15px;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.why-content h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
}

.why-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #000 0%, #222 100%);
    color: white;
    padding: 100px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #000;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: white;
}

.footer-links a:hover::after,
.footer-links a.active::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-note {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.3rem;
    }
    
    .section-intro h2 {
        font-size: 2.3rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 400px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        
gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-detail {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .service-title h3 {
        font-size: 1.8rem;
    }
    
    .recommended-badge {
        right: -40px;
        padding: 8px 50px;
    }
    
    .cta-text h3 {
        font-size: 2rem;
    }
}
