/* Services Page Specific Styles - FIXED VERSION */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation Updates */
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Services Hero Section */
.services-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--glass-bg);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Service Filter */
.service-filter {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.service-item {
    opacity: 1;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.service-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.service-card {
    background: var(--glass-bg);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-header {
    padding: 2rem 2rem 0;
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-content {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-features li {
    list-style: none;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    list-style: none;
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-results {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.service-cta:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

/* Services Showcase */
.services-showcase {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.showcase-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.showcase-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Packages Section */
.service-packages {
    padding: 100px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    width: 100%;
    display: block;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: var(--glass-bg);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    transform: scale(1.05);
}

.package-badge {
    position: center;
    top: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.package-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.package-features li {
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-features li::after {
    content: '';
    left: 0.2rem;
    top: 0.1rem;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.package-cta {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    margin-top: auto;
}

.package-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.package-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.package-card .btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.package-card .btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-section .section-title {
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    max-width: 400px;
    position: relative;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services CTA Section */
.services-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 4, 255, 0.1), rgba(0, 122, 255, 0.1));
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    align-self: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: 2px solid;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.3);
}

/* ROI Calculator Modal - FIXED STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--glass-bg);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calc-group label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.calc-group input {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.calc-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.calc-group input::placeholder {
    color: var(--text-muted);
}

.calculate-btn {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.calculator-results {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.calculator-results h4 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.result-grid {
    display: grid;
    gap: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.result-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

.result-value {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-stats {
        justify-content: center;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card.featured {
        transform: none;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-step {
        flex-direction: row !important;
        margin-left: 2rem;
    }

    .process-step:nth-child(even) .step-content {
        text-align: left;
    }

    .step-number {
        margin-left: 0;
        margin-right: 2rem;
    }

    .step-content {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .feature {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        max-width: none;
    }

    .service-results {
        flex-direction: column;
        gap: 1rem;
    }

    .result-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 0.5rem;
    }

    .result-label {
        font-size: 0.85rem;
    }

    .result-number {
        font-size: 1.5rem;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    /* Package cards mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .package-card {
        max-width: 100%;
    }

    .package-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .package-content {
        padding: 1.5rem;
    }

    /* Process mobile */
    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        margin-left: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-right: 1.5rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    /* Modal adjustments for mobile */
    .modal-overlay {
        padding: 1rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .calculator-form {
        gap: 1.5rem;
    }

    .calc-group input {
        padding: 1rem;
        font-size: 1rem;
    }

    .calculate-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .result-grid {
        gap: 1rem;
    }

    .result-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }

    .result-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 3%;
    }

    .services-hero {
        padding: 100px 0 60px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        gap: 1rem;
        justify-content: center;
    }

    .feature {
        min-width: auto;
        flex: 1;
        max-width: 140px;
    }

    .service-content {
        padding: 0 1.5rem 1.5rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    /* Small mobile adjustments for packages */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .package-header h3 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    /* Process adjustments */
    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .step-number {
        margin: 0 0 1rem 0;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .step-content {
        max-width: 100%;
        margin: 0;
    }

    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.nav-links a:focus,
.btn:focus,
.filter-btn:focus,
.modal-close:focus,
.service-cta:focus,
.calculate-btn:focus,
.calc-group input:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .modal-content,
    .calculator-results {
        border-width: 2px;
    }
    
    .btn,
    .filter-btn {
        border: 2px solid;
    }
}

/* ============================================
   FINAL BUTTON CENTERING FIX - ADD TO BOTTOM
   ============================================ */

/* Reset and force perfect centering for ALL buttons */
.package-cta,
.service-cta {
    /* Force reset everything */
    width: 100% !important;
    margin: 0 !important;
    margin-top: auto !important;
    padding: 1rem 2rem !important;
    
    /* Force perfect centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    
    /* Remove any positioning offsets */
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: none !important;
    text-indent: 0 !important;
    
    /* Ensure proper box model */
    box-sizing: border-box !important;
    
    /* Basic styling */
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 2px solid !important;
    
    /* Remove any pseudo-elements */
    overflow: visible !important;
}

/* Force parent containers to not interfere */
.package-content,
.service-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
}

/* Remove any pseudo-elements completely */
.package-cta::before,
.package-cta::after,
.service-cta::before,
.service-cta::after {
    content: none !important;
    display: none !important;
}

/* Specific button type styling */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border-color: transparent !important;
}

.package-card .btn-primary,
.package-cta.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border-color: transparent !important;
}

.package-card .btn-secondary,
.package-cta.btn-secondary {
    background: transparent !important;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Hover effects */
.service-cta:hover,
.package-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4) !important;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .package-cta,
    .service-cta {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .package-cta,
    .service-cta {
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }
}

