/* ======================================== SERVICES PAGE ENHANCEMENTS Hero section and service cards redesign ======================================== */ /* ======================================== HERO SECTION ======================================== */ /* Hero background image support */ .hero-badge { display: inline-block; background: linear-gradient(135deg, #1a5f7a 0%, #2d8fb8 100%); color: white; padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.5rem; box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2); } .hero-title { margin-bottom: 1.5rem; } .hero-subtitle { font-size: 1.15rem; line-height: 1.7; color: #444; margin-bottom: 2.5rem; max-width: 760px; margin-left: auto; margin-right: auto; } .hero-cta-group { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; } .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.05rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); border: none; cursor: pointer; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4); color: white; } .btn-primary:active { transform: translateY(0); } .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #1a5f7a; padding: 1rem 2rem; border: 2px solid #1a5f7a; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.05rem; transition: background 0.2s, color 0.2s; } .btn-secondary:hover { background: #1a5f7a; color: white; } .trust-item { text-align: center; font-size: 0.9rem; color: #666; } .trust-item strong { display: block; font-size: 1.75rem; color: #1a5f7a; font-weight: 700; margin-bottom: 0.25rem; } /* ======================================== SERVICE CARDS - ENHANCED ======================================== */ .services-grid-enhanced { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; padding: 3rem 0; max-width: 1200px; margin: 0 auto; } /* Service-specific colors */ /* ======================================== SERVICE CARDS V2 - Exodus Style Homepage service cards with images ======================================== */ .service-card-v2 { display: flex; flex-direction: column; background: var(--surface-base, #ffffff); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm, 0 2px 12px rgba(0, 0, 0, 0.06)); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid var(--border-light, rgba(0, 0, 0, 0.04)); position: relative; /* CRITICAL: Required for badge positioning */ } .service-card-v2:hover { transform: translateY(-6px); box-shadow: var(--shadow-md, 0 12px 32px rgba(0, 0, 0, 0.12)); } .service-card-v2 .card-badge { position: absolute; top: 1rem; left: 1rem; width: 44px; height: 44px; background: var(--accent-color, #FF1654); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #ffffff; z-index: 2; box-shadow: 0 4px 12px rgba(255, 22, 84, 0.3); } .service-card-v2 .card-image { position: relative; height: 180px; overflow: hidden; } .service-card-v2 .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .service-card-v2:hover .card-image img { transform: scale(1.05); } .service-card-v2 .card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; } .service-card-v2 .card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading, #1a1a1a); margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; } .service-card-v2 .card-body p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted, #5a6a7a); margin: 0; flex-grow: 1; } .service-card-v2 .card-arrow { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--accent-color, #FF1654); border-radius: 50%; color: #ffffff; margin-top: 1rem; transition: background 0.2s ease; } .service-card-v2:hover .card-arrow { background: var(--accent-coral-hover, #d91144); } /* Dark mode support */ body.theme-dark .service-card-v2 { background: var(--surface-muted); border-color: var(--border-medium); } body.theme-dark .service-card-v2:hover { background: var(--surface-navy); border-color: var(--border-dark); } body.theme-dark .service-card-v2 .card-body h3 { color: var(--text-heading); } body.theme-dark .service-card-v2 .card-body p { color: var(--text-muted); } /* ======================================== PRICING TIERS ======================================== */ .pricing-card { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 2px solid transparent; position: relative; display: flex; flex-direction: column; } .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); } /* Featured tier */ .pricing-card.featured { border-color: #10B981; background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%); } .pricing-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #10B981; color: white; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; } .pricing-features { list-style: none; padding: 0; margin: 0 0 2rem 0; flex-grow: 1; } .pricing-features li { font-size: 0.95rem; color: #555; padding: 0.75rem 0; display: flex; align-items: flex-start; gap: 0.75rem; border-bottom: 1px solid #f0f0f0; } .pricing-features li:last-child { border-bottom: none; } .pricing-features li::before { content: '✓'; color: #10B981; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; } .pricing-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; background: #1a5f7a; color: white; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 1rem; transition: all 0.2s ease; margin-top: auto; } .pricing-cta:hover { background: #0E2B48; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3); color: white; } .pricing-card.featured .pricing-cta { background: #10B981; } .pricing-card.featured .pricing-cta:hover { background: #059669; } .pricing-note { margin-top: 2rem; padding: 1.5rem; background: #f8f9fa; border-radius: 8px; border-left: 4px solid #1a5f7a; font-size: 0.9rem; color: #555; line-height: 1.6; } /* ======================================== ACCORDION MODULES ======================================== */ .accordion-item { background: white; border: 1px solid #e0e0e0; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; } .accordion-item[open] { border-color: #1a5f7a; box-shadow: 0 4px 12px rgba(26, 95, 122, 0.1); } .accordion-header { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; user-select: none; list-style: none; background: #f8f9fa; transition: background 0.2s ease; } .accordion-header:hover { background: #e9ecef; } .accordion-item[open] .accordion-header { background: #e0f2f1; border-bottom: 1px solid #e0e0e0; } .accordion-header::-webkit-details-marker { display: none; } .accordion-content { padding: 1.5rem; line-height: 1.7; color: #444; } .accordion-content p { margin-bottom: 1rem; } .accordion-content ul, .accordion-content ol { margin: 1rem 0; padding-left: 1.5rem; } .accordion-content li { margin-bottom: 0.5rem; } .warning-box { padding: 1rem; border-radius: 8px; margin-top: 1rem; } .warning-box { background: #fff3cd; border-left: 4px solid #F59E0B; } /* ======================================== RESPONSIVE ======================================== */ @media (max-width: 991px) { /* FIX: Change fixed positioning to absolute on mobile to prevent zoom issues */ } @media (max-width: 768px) { .hero-subtitle { font-size: 1rem; } .hero-cta-group { flex-direction: column; width: 100%; } .btn-primary, .btn-secondary { width: 100%; justify-content: center; } .trust-item strong { font-size: 1.5rem; } .services-grid-enhanced { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; } } @media (max-width: 480px) { .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; } .hero-subtitle { font-size: 0.95rem; } .trust-item { font-size: 0.8rem; } .trust-item strong { font-size: 1.3rem; } } /* ======================================== DARK MODE SUPPORT ======================================== */ @media (prefers-color-scheme: dark) { .hero-subtitle { color: #cccccc; } .trust-item { color: #aaaaaa; } }