/* Services Page Specific Styles - Mobile First */

/* Services Hero Section - Mobile First */
.services-hero {
    min-height: 100vh;
    padding: 100px 1rem 4rem 1rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        var(--primary-dark);
    z-index: 1;
}

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

.services-hero-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

/* Mobile-first content styling */
.services-hero-text {
    width: 100%;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    color: var(--text-pricing);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: glow-pulse 3s ease-in-out infinite;
}

.services-hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.services-hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.service-highlight {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    text-align: left;
    transition: all 0.3s ease;
}

.service-highlight:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.service-highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.service-highlight h3 {
    font-size: 1rem;
    color: var(--accent-blue);
    margin-bottom: 0.3rem;
}

.service-highlight p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.services-hero-visual {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.services-mockup-container {
    position: relative;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.services-mockup-screen {
    width: 100%;
    height: 200px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.mockup-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(255, 0, 110, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.mockup-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.mockup-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.services-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

/* Button styles (inheriting from main styles.css) */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
    .services-hero {
        padding: 120px 2rem 4rem 2rem;
    }
    
    .services-hero-title {
        font-size: 3rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-hero-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-mockup-screen {
        height: 240px;
    }
    
    .services-hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
}

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
    .services-hero-layout {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 4rem;
    }
    
    .services-hero-text {
        flex: 1;
    }
    
    .services-hero-visual {
        flex: 1;
        max-width: 500px;
    }
    
    .services-hero-title {
        font-size: 3.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .services-hero-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-highlight {
        padding: 1.5rem;
    }
    
    .services-mockup-screen {
        height: 300px;
    }
    
    .services-hero-cta {
        justify-content: flex-start;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
}


/* Core Digital Solutions Section - Clean & Minimal */

.core-solutions-section {
    padding: 4rem 1rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.core-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.core-solutions-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.core-solutions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.core-solutions-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.core-solutions-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid - Clean Layout */
.core-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

/* Service Cards - Minimal Design */
.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1; /* Always visible - no animation dependency */
    transform: translateY(0);
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Subtle Featured/Popular Styling */
.solution-card.featured {
    border-color: rgba(0, 212, 255, 0.15);
}

.solution-card.popular {
    border-color: rgba(46, 213, 115, 0.15);
}

/* Card Header - Clean */
.solution-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.solution-icon {
    font-size: 2.2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Minimal Badge Styling */
.solution-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.solution-badge.priority {
    color: var(--accent-blue);
    border-color: rgba(0, 212, 255, 0.2);
}

.solution-badge.popular {
    color: var(--accent-coral);
    border-color: rgba(213, 191, 46, 0.2);
}

.solution-badge.solution-badge.community {
    color: var(--accent-green);
    border-color: rgba(46, 213, 115, 0.2);
}

.solution-badge.premium,
.solution-badge.steady,
.solution-badge.community,
.solution-badge.transform {
    color: var(--text-gray);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Card Content */
.solution-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Feature Lists - Clean */
.solution-features-core,
.solution-features-extra {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    text-align: left;
}

.solution-features-core li,
.solution-features-extra li {
    color: var(--text-gray);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.solution-features-core li::before,
.solution-features-extra li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 3px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 50%;
}

/* Expandable Features */
.features-expandable {
    overflow: hidden;
    transition: all 0.3s ease;
}

.features-expandable.expanded {
    display: block !important;
    animation: expandDown 0.3s ease;
}

@keyframes expandDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

/* XXXXXX Feature Toggle Button - Minimal */
.features-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 0.5rem 0 1.5rem 0;
    transition: all 0.2s ease;
    font-weight: 500;
    /*display:none;*/
}

.features-toggle:hover {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

/* Investment Section - Clean Layout */
.solution-investment {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.investment-amount {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1rem;
}

.investment-timeline {
    color: var(--text-gray);
    font-size: 0.85rem;
    background: rgba(46, 213, 115, 0.08);
    border: 1px solid rgba(46, 213, 115, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-weight: 500;
}

/* CTA Buttons - Clean */
.solution-cta {
    width: 100%;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-cta.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.solution-cta.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.solution-cta:hover {
    transform: translateY(-1px);
}

.solution-cta.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.solution-cta.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Section Footer CTA - Clean */
.core-solutions-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
}

.footer-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-cta-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-button {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    background: var(--gradient-primary);
    color: white;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .core-solutions-section {
        padding: 6rem 2rem;
    }
    
    .core-solutions-title {
        font-size: 3rem;
    }
    
    .core-solutions-subtitle {
        font-size: 1.2rem;
    }
    
    .core-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .solution-card {
        padding: 2.5rem;
    }
    
    .solution-title {
        font-size: 1.5rem;
    }
    
    .solution-description {
        font-size: 1rem;
    }
    
    .solution-investment {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-cta-title {
        font-size: 2.2rem;
    }
    
    .footer-cta-subtitle {
        font-size: 1rem;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .core-solutions-section {
        padding: 8rem 2rem;
    }
    
    .core-solutions-title {
        font-size: 3.5rem;
    }
    
    .core-solutions-subtitle {
        font-size: 1.3rem;
    }
    
    .core-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .solution-card {
        padding: 2.5rem;
    }
    
    .solution-icon {
        font-size: 2.5rem;
        width: 64px;
        height: 64px;
    }
    
    .solution-title {
        font-size: 1.6rem;
    }
    
    .solution-description {
        font-size: 1rem;
    }
    
    .solution-features-core li,
    .solution-features-extra li {
        font-size: 0.95rem;
    }
    
    .footer-cta-title {
        font-size: 2.5rem;
    }
    
    .core-solutions-footer {
        padding: 3.5rem 3rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .core-solutions-grid {
        gap: 3rem;
    }
    
    .solution-card {
        padding: 3rem;
    }
}

/* Animation for Feature Expansion */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-features-extra li {
    animation: fadeIn 0.3s ease forwards;
}

/* Quick Design Services Section - Clean & Minimal */

.quick-services-section {
    padding: 4rem 1rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.quick-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 110, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.quick-services-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.quick-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-services-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.quick-services-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Quick Services Grid - Mobile First */
.quick-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

/* Quick Service Cards - Compact Design */
.quick-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Service Icon - Clean */
.quick-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Service Title */
.quick-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

/* Service Description */
.quick-service-description {
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Feature List - Compact */
.quick-service-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    text-align: left;
}

.quick-service-features li {
    color: var(--text-gray);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.quick-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 3px;
    height: 3px;
    background: var(--accent-coral);
    border-radius: 50%;
}

/* Pricing Section - Compact */
.quick-service-pricing {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.8rem;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-price {
    color: var(--accent-coral);
    font-weight: 700;
    font-size: 0.95rem;
}

.quick-timeline {
    color: var(--text-gray);
    font-size: 0.8rem;
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

/* CTA Button - Compact */
.quick-service-cta {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
}

.quick-service-cta:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 71, 87, 0.3);
    color: var(--accent-coral);
}

/* Section Footer - Clean */
.quick-services-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
}

.quick-footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-footer-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.quick-footer-cta {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--gradient-secondary);
    color: white;
    transition: all 0.2s ease;
    display: inline-block;
}

.quick-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .quick-services-section {
        padding: 6rem 2rem;
    }
    
    .quick-services-title {
        font-size: 3rem;
    }
    
    .quick-services-subtitle {
        font-size: 1.2rem;
    }
    
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .quick-service-card {
        padding: 2rem;
    }
    
    .quick-service-title {
        font-size: 1.3rem;
    }
    
    .quick-service-description {
        font-size: 0.95rem;
    }
    
    .quick-service-features li {
        font-size: 0.9rem;
    }
    
    .quick-price {
        font-size: 1rem;
    }
    
    .quick-footer-title {
        font-size: 1.8rem;
    }
    
    .quick-footer-subtitle {
        font-size: 1rem;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .quick-services-section {
        padding: 8rem 2rem;
    }
    
    .quick-services-title {
        font-size: 3.5rem;
    }
    
    .quick-services-subtitle {
        font-size: 1.3rem;
    }
    
    .quick-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .quick-service-card {
        padding: 2.5rem;
    }
    
    .quick-service-icon {
        font-size: 3rem;
    }
    
    .quick-service-title {
        font-size: 1.4rem;
    }
    
    .quick-service-description {
        font-size: 1rem;
    }
    
    .quick-service-features li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .quick-footer-title {
        font-size: 2rem;
    }
    
    .quick-services-footer {
        padding: 3rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .quick-services-grid {
        gap: 3rem;
    }
    
    .quick-service-card {
        padding: 3rem;
    }
}

/* Investment & Process Section - Clean Complete CSS */
.investment-process-section {
    padding: 4rem 1rem;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
    border-top: aqua;
    border-top-width: medium;
    border-top-style: inset;
}

.investment-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 213, 115, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.investment-process-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.investment-process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investment-process-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-pricing);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.investment-process-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Layout - Mobile First (Stacked) */
.investment-process-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Investment Column */
.investment-column {
    width: 100%;
}

/* Pricing Cards Container - NEW: Wraps both pricing cards */
.pricing-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Pricing Philosophy Card */
.pricing-philosophy-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    border-left: 3px solid var(--text-pricing);
}

.philosophy-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.philosophy-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 213, 115, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.philosophy-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

.philosophy-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Pricing Features */
.pricing-features {
    margin-top: 1.5rem;
}

.pricing-features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-pricing);
    margin-bottom: 1rem;
}

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

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-icon {
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 213, 115, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
}

/* Payment Options Card */
.payment-options-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    /*border-left: 3px solid var(--accent-blue);*/
}

.payment-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-title::before {
    content: '💳';
    font-size: 1.5rem;
}

/* Payment Options Grid */
.payment-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.payment-option.popular {
    border-color: rgba(46, 213, 115, 0.3);
    background: rgba(46, 213, 115, 0.05);
}

.payment-option-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--accent-green);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

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

.payment-option h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.payment-description {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Non-profit Note */
.nonprofit-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
    border-left: 3px solid var(--accent-green);
}

.nonprofit-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.nonprofit-note p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.nonprofit-note strong {
    color: var(--text-light);
}

/* Process Column */
.process-column {
    width: 100%;
}

/* Process Overview Card */
.process-overview-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-blue);
}

.process-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.process-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

.process-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(4px);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    bottom: -12px;
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.3), transparent);
    z-index: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.step-timeline {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-blue);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Note */
.timeline-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    gap: 0.8rem;
    border-left: 3px solid var(--accent-coral);
}

.timeline-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.timeline-note-content {
    flex: 1;
}

.timeline-note-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-note-description {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Section Footer CTA */
.investment-process-footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
}

.process-footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-footer-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.process-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.process-cta-primary,
.process-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.process-cta-primary {
    background: var(--gradient-primary);
    color: white;
}

.process-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.process-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .investment-process-section {
        padding: 6rem 2rem;
    }
    
    .investment-process-title {
        font-size: 3rem;
    }
    
    .investment-process-subtitle {
        font-size: 1.2rem;
    }
    
    .investment-process-layout {
        gap: 4rem;
    }
    
    /* Pricing cards side by side on tablet+ */
    .pricing-cards-container {
        flex-direction: row;
        gap: 2rem;
    }
    
    .pricing-philosophy-card,
    .payment-options-card,
    .process-overview-card {
        padding: 2.5rem;
    }
    
    .philosophy-title,
    .payment-title,
    .process-title {
        font-size: 1.4rem;
    }
    
    .philosophy-description,
    .process-description {
        font-size: 1rem;
    }
    
    .payment-options-grid {
        grid-template-columns: 1fr; /* Keep single column in payment card */
        gap: 1rem;
    }
    
    .payment-option {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .process-footer-title {
        font-size: 2.2rem;
    }
    
    .process-footer-subtitle {
        font-size: 1rem;
    }
    
    .process-footer-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .process-cta-primary,
    .process-cta-secondary {
        width: auto;
        min-width: 200px;
    }
}

    /* Desktop Styles (1024px and up) */
    @media (min-width: 1024px) {
    .investment-process-section {
        padding: 8rem 2rem;
    }
    
    .investment-process-title {
        font-size: 3.5rem;
    }
    
    .investment-process-subtitle {
        font-size: 1.3rem;
    }
    
    /* Keep layout stacked: pricing cards row, then process row */
    .investment-process-layout {
        flex-direction: column;
        gap: 4rem;
    }
    
    .investment-column,
    .process-column {
        width: 100%;
    }
    
    /* Pricing cards side by side on desktop */
    .pricing-cards-container {
        flex-direction: row;
        gap: 2.5rem;
    }
    
    .pricing-philosophy-card,
    .payment-options-card,
    .process-overview-card {
        padding: 3rem;
    }
    
    .philosophy-icon,
    .process-icon {
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }
    
    .philosophy-title,
    .payment-title,
    .process-title {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .process-footer-title {
        font-size: 2.5rem;
    }
    
    .investment-process-footer {
        padding: 3.5rem 3rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .investment-process-layout {
        gap: 5rem;
    }
    
    .pricing-cards-container {
        gap: 3rem;
    }
    
    .pricing-philosophy-card,
    .payment-options-card,
    .process-overview-card {
        padding: 3.5rem;
    }
}

/* Process Steps Animation */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step {
    animation: slideInFromLeft 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }


/* =================================================
   ENHANCED FOOTER STYLES
   ================================================= */

/* Enhanced footer specifically for homepage */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0 0 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-column h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-copyright,
.footer-made-with {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.footer-social {
    margin-top: 0.5rem;
}

.footer-social a {
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}