1125 lines
30 KiB
CSS
1125 lines
30 KiB
CSS
|
|
/* Simplified Color Scheme */
|
|
:root {
|
|
--primary-color: #FF6B35;
|
|
--secondary-color: #FF8A50;
|
|
--text-color: #e0e0e0;
|
|
--bg-dark: #1a1a1a;
|
|
--light-bg: #2a2a2a;
|
|
--white: #FFFFFF;
|
|
--transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
|
|
/* Enhanced Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: radial-gradient(circle at 30% 20%, rgba(255,107,53,0.05) 0%, transparent 50%);
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-text {
|
|
/* Animation removed for faster LCP */
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin-bottom: 1.5rem;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* Aggressive Urgent Styling */
|
|
@keyframes pulse {
|
|
0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6); }
|
|
70% { box-shadow: 0 0 0 15px rgba(255, 68, 68, 0); }
|
|
100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
|
|
}
|
|
|
|
@keyframes urgentFlash {
|
|
0%, 100% { background-color: rgba(255, 68, 68, 0.08); }
|
|
50% { background-color: rgba(255, 68, 68, 0.15); }
|
|
}
|
|
|
|
.danger-text {
|
|
color: var(--primary-color) !important;
|
|
font-weight: bold;
|
|
text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
|
|
}
|
|
|
|
.urgent-border {
|
|
border: 3px solid var(--primary-color) !important;
|
|
animation: urgentFlash 2s infinite;
|
|
}
|
|
|
|
/* Removed lazy-bg - no external images used */
|
|
|
|
@keyframes shimmer {
|
|
0% { background-position: 0 0; }
|
|
100% { background-position: 40px 40px; }
|
|
}
|
|
|
|
/* Interactive Package Selector */
|
|
.package-selector {
|
|
background: var(--light-bg);
|
|
border-radius: 15px;
|
|
padding: 0.5rem;
|
|
margin: 3rem 0;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.package-selector::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: linear-gradient(45deg, transparent, rgba(255,107,53,0.05), transparent);
|
|
animation: shimmer 3s linear infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
|
|
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
|
|
}
|
|
|
|
.package-tabs {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 0;
|
|
margin-bottom: 2rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.package-tab {
|
|
padding: 1rem 2rem;
|
|
background: transparent;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
color: var(--text-color);
|
|
cursor: pointer;
|
|
transition: var(--transition-smooth);
|
|
font-weight: 600;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.package-tab:first-child { border-radius: 15px 0 0 15px; }
|
|
.package-tab:last-child { border-radius: 0 15px 15px 0; }
|
|
|
|
.package-tab.active {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 20px rgba(255,107,53,0.4);
|
|
}
|
|
|
|
.package-content {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
transition: var(--transition-smooth);
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.package-content.active {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Activity Feed */
|
|
.activity-feed {
|
|
background: var(--light-bg);
|
|
border-radius: 12px;
|
|
padding: 0.5rem;
|
|
margin: 2rem 0;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
max-height: 350px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.activity-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 0.75rem;
|
|
border-radius: 8px;
|
|
margin-bottom: 0.5rem;
|
|
background: rgba(255,107,53,0.05);
|
|
border-left: 3px solid var(--primary-color);
|
|
/* Animation removed for faster LCP */
|
|
}
|
|
|
|
/* Animation delays removed for faster LCP */
|
|
|
|
.activity-icon {
|
|
width: 35px;
|
|
height: 35px;
|
|
background: var(--primary-color);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.activity-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.activity-title {
|
|
font-weight: 600;
|
|
color: var(--white);
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.activity-desc {
|
|
font-size: 0.9rem;
|
|
color: var(--text-color);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.activity-time {
|
|
font-size: 0.8rem;
|
|
color: var(--primary-color);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ROI Calculator */
|
|
.roi-calculator {
|
|
background: var(--light-bg);
|
|
border-radius: 15px;
|
|
padding: 0.5rem;
|
|
margin: 3rem 0;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
position: relative;
|
|
}
|
|
|
|
.calculator-slider {
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.slider-container {
|
|
position: relative;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.slider {
|
|
width: 100%;
|
|
height: 8px;
|
|
background: rgba(255,107,53,0.2);
|
|
border-radius: 5px;
|
|
outline: none;
|
|
appearance: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.slider::-webkit-slider-thumb {
|
|
appearance: none;
|
|
width: 24px;
|
|
height: 24px;
|
|
background: var(--primary-color);
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
box-shadow: 0 2px 10px rgba(255,107,53,0.4);
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.slider::-webkit-slider-thumb:hover {
|
|
transform: scale(1.2);
|
|
box-shadow: 0 4px 20px rgba(255,107,53,0.6);
|
|
}
|
|
|
|
.roi-results {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.roi-metric {
|
|
text-align: center;
|
|
padding: 0.5rem;
|
|
background: rgba(255,107,53,0.1);
|
|
border-radius: 15px;
|
|
border: 1px solid rgba(255,107,53,0.3);
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.roi-metric:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 30px rgba(255,107,53,0.2);
|
|
}
|
|
|
|
.roi-value {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
color: var(--primary-color);
|
|
margin-bottom: 0.5rem;
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.roi-label {
|
|
font-size: 0.9rem;
|
|
color: var(--text-color);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
/* Feature Toggles */
|
|
.feature-toggles {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.toggle-item {
|
|
background: var(--light-bg);
|
|
border-radius: 12px;
|
|
padding: 0.5rem;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
transition: var(--transition-smooth);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.toggle-item:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 10px 30px rgba(255,107,53,0.2);
|
|
}
|
|
|
|
.toggle-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.toggle-switch {
|
|
width: 60px;
|
|
height: 30px;
|
|
background: rgba(255,107,53,0.3);
|
|
border-radius: 15px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.toggle-switch.active {
|
|
background: var(--primary-color);
|
|
}
|
|
|
|
.toggle-knob {
|
|
width: 26px;
|
|
height: 26px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
transition: var(--transition-smooth);
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.toggle-switch.active .toggle-knob {
|
|
transform: translateX(30px);
|
|
}
|
|
|
|
.toggle-content {
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
transition: max-height 0.3s var(--transition-smooth);
|
|
}
|
|
|
|
.toggle-item.active .toggle-content {
|
|
max-height: 200px;
|
|
}
|
|
|
|
/* Testimonials Carousel */
|
|
.testimonials-carousel {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 15px;
|
|
background: var(--light-bg);
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.testimonials-container {
|
|
display: flex;
|
|
transition: transform 0.5s var(--transition-smooth);
|
|
}
|
|
|
|
.testimonial-slide {
|
|
min-width: 100%;
|
|
padding: 0.75rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.testimonial-content {
|
|
font-size: 1.2rem;
|
|
font-style: italic;
|
|
margin-bottom: 2rem;
|
|
color: var(--text-color);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.testimonial-author {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.author-avatar {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.author-info h4 {
|
|
color: var(--white);
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.author-info p {
|
|
color: var(--primary-color);
|
|
font-size: 0.9rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.carousel-indicators {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.indicator {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: rgba(255,107,53,0.3);
|
|
cursor: pointer;
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.indicator.active {
|
|
background: var(--primary-color);
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
/* Enhanced Cards with Micro-interactions */
|
|
.modern-card {
|
|
background: var(--light-bg);
|
|
border-radius: 15px;
|
|
padding: 2rem;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
transition: var(--transition-smooth);
|
|
cursor: pointer;
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: 250px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.modern-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
|
|
transition: left 0.5s;
|
|
}
|
|
|
|
.modern-card:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.modern-card:hover {
|
|
transform: translateY(-10px);
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 20px 40px rgba(255,107,53,0.2);
|
|
}
|
|
|
|
.cards-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
/* Number Counter Animation */
|
|
.counter {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
color: var(--primary-color);
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.hero-content {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.package-tabs {
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.package-tab {
|
|
border-radius: 10px !important;
|
|
}
|
|
|
|
.roi-results {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.feature-toggles {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Loading Animation */
|
|
.loading-spinner {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 3px solid rgba(255,107,53,0.3);
|
|
border-radius: 50%;
|
|
border-top-color: var(--primary-color);
|
|
animation: spin 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Floating Action Button */
|
|
.fab {
|
|
position: fixed;
|
|
bottom: 30px;
|
|
right: 30px;
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--primary-color);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
box-shadow: 0 5px 20px rgba(255,107,53,0.4);
|
|
cursor: pointer;
|
|
transition: var(--transition-smooth);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.fab:hover {
|
|
transform: scale(1.1);
|
|
box-shadow: 0 8px 30px rgba(255,107,53,0.6);
|
|
}
|
|
|
|
/* Enhanced Hero with CSS-only Background (No External Images) */
|
|
.hero {
|
|
position: relative;
|
|
background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(42,24,16,0.8) 50%, rgba(42,42,42,0.85) 100%);
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
/* Mobile hero optimization */
|
|
@media (max-width: 768px) {
|
|
.hero {
|
|
background-attachment: scroll;
|
|
}
|
|
}
|
|
|
|
/* Visual Benefits Section */
|
|
.visual-benefits {
|
|
padding: 6rem 0;
|
|
background: var(--bg-dark);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.benefits-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 3rem;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.benefit-card {
|
|
position: relative;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
background: var(--light-bg);
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
transition: var(--transition-smooth);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.benefit-card:hover {
|
|
transform: translateY(-10px);
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 20px 40px rgba(255,107,53,0.3);
|
|
}
|
|
|
|
.benefit-image {
|
|
width: 100%;
|
|
height: 220px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.benefit-image::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, rgba(255,107,53,0.7) 0%, rgba(255,138,80,0.6) 100%);
|
|
opacity: 0;
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.benefit-card:hover .benefit-image::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.benefit-content {
|
|
padding: 0.5rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.benefit-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--primary-color);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1.5rem;
|
|
position: absolute;
|
|
top: -30px;
|
|
left: 2rem;
|
|
box-shadow: 0 5px 20px rgba(255,107,53,0.4);
|
|
}
|
|
|
|
.benefit-title {
|
|
color: var(--white);
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.benefit-description {
|
|
color: var(--text-color);
|
|
line-height: 1.6;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.benefit-features {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.benefit-features li {
|
|
padding: 0.5rem 0;
|
|
color: var(--text-color);
|
|
position: relative;
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
.benefit-features li::before {
|
|
content: '✓';
|
|
color: var(--primary-color);
|
|
font-weight: bold;
|
|
position: absolute;
|
|
left: 0;
|
|
}
|
|
|
|
/* Success Stories Gallery */
|
|
.success-stories {
|
|
padding: 6rem 0;
|
|
background: linear-gradient(135deg, var(--light-bg) 0%, var(--bg-dark) 100%);
|
|
position: relative;
|
|
}
|
|
|
|
.stories-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 3rem;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.story-card {
|
|
position: relative;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
background: var(--bg-dark);
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
transition: var(--transition-smooth);
|
|
cursor: pointer;
|
|
height: 380px;
|
|
}
|
|
|
|
.story-card:hover {
|
|
transform: translateY(-15px);
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 25px 50px rgba(255,107,53,0.4);
|
|
}
|
|
|
|
.story-image {
|
|
width: 100%;
|
|
height: 250px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Ken Burns Effect */
|
|
.story-image {
|
|
animation: kenBurns 20s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes kenBurns {
|
|
0% { transform: scale(1) translate(0, 0); }
|
|
100% { transform: scale(1.1) translate(-10px, -5px); }
|
|
}
|
|
|
|
.story-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, rgba(255,107,53,0.8) 0%, rgba(255,138,80,0.6) 100%);
|
|
opacity: 0;
|
|
transition: var(--transition-smooth);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding: 0.75rem;
|
|
}
|
|
|
|
.story-card:hover .story-overlay {
|
|
opacity: 1;
|
|
}
|
|
|
|
.story-stat {
|
|
color: white;
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.story-stat-label {
|
|
color: white;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.story-content {
|
|
padding: 0.5rem;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.story-title {
|
|
color: var(--white);
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.story-description {
|
|
color: var(--text-color);
|
|
line-height: 1.6;
|
|
flex: 1;
|
|
}
|
|
|
|
.story-location {
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
margin-top: 1rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Team & Trust Section */
|
|
.team-trust {
|
|
padding: 6rem 0;
|
|
background: var(--bg-dark);
|
|
position: relative;
|
|
}
|
|
|
|
.trust-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 3rem;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.trust-card {
|
|
background: var(--light-bg);
|
|
border-radius: 15px;
|
|
padding: 2rem 1.5rem;
|
|
border: 2px solid rgba(255,107,53,0.3);
|
|
text-align: center;
|
|
transition: var(--transition-smooth);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.trust-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: linear-gradient(45deg, transparent, rgba(255,107,53,0.1), transparent);
|
|
animation: shimmer 4s linear infinite;
|
|
opacity: 0;
|
|
}
|
|
|
|
.trust-card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.trust-card:hover {
|
|
transform: translateY(-10px);
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 20px 40px rgba(255,107,53,0.3);
|
|
}
|
|
|
|
.trust-icon {
|
|
width: 70px;
|
|
height: 70px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.8rem;
|
|
color: white;
|
|
margin: 0 auto 1.5rem;
|
|
box-shadow: 0 8px 25px rgba(255,107,53,0.3);
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.trust-title {
|
|
color: var(--white);
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.trust-description {
|
|
color: var(--text-color);
|
|
line-height: 1.6;
|
|
margin-bottom: 2rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.trust-badges {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.trust-badge {
|
|
background: rgba(255,107,53,0.2);
|
|
color: var(--primary-color);
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
border: 1px solid rgba(255,107,53,0.3);
|
|
transition: var(--transition-smooth);
|
|
}
|
|
|
|
.trust-badge:hover {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
/* Fade in on scroll animation */
|
|
.fade-in-up {
|
|
opacity: 0;
|
|
transform: translateY(40px);
|
|
transition: opacity 0.8s ease, transform 0.8s ease;
|
|
}
|
|
|
|
.fade-in-up.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Enhanced Interactive Elements */
|
|
.interactive-background {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
|
|
rgba(255, 107, 53, 0.05) 0%,
|
|
transparent 50%);
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
/* Morphing Button Effects */
|
|
.btn {
|
|
position: relative;
|
|
overflow: hidden;
|
|
transform-style: preserve-3d;
|
|
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
}
|
|
|
|
.btn::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
|
|
transition: left 0.5s;
|
|
}
|
|
|
|
.btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-2px) scale(1.02);
|
|
box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
|
|
}
|
|
|
|
/* Scroll Progress Indicator */
|
|
.scroll-progress {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0%;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
|
|
z-index: 9999;
|
|
transition: width 0.1s ease;
|
|
}
|
|
|
|
/* Particle Cursor Trail */
|
|
.cursor-particle {
|
|
position: fixed;
|
|
width: 4px;
|
|
height: 4px;
|
|
background: var(--primary-color);
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
z-index: 9998;
|
|
animation: particleFade 1s linear forwards;
|
|
}
|
|
|
|
@keyframes particleFade {
|
|
0% {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
/* Advanced Hover States */
|
|
.benefit-card, .story-card, .trust-card {
|
|
transform-style: preserve-3d;
|
|
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
}
|
|
|
|
.benefit-card:hover, .story-card:hover, .trust-card:hover {
|
|
transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
|
|
box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
|
|
}
|
|
|
|
/* Removed glitch effects for clean design */
|
|
|
|
/* Liquid Button Effect */
|
|
.liquid-btn {
|
|
position: relative;
|
|
background: var(--primary-color);
|
|
border-radius: 50px;
|
|
overflow: hidden;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.liquid-btn::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
|
|
transform: scale(0);
|
|
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
}
|
|
|
|
.liquid-btn:hover::before {
|
|
transform: scale(1);
|
|
}
|
|
|
|
/* Magnetic Effect for Interactive Elements */
|
|
.magnetic {
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.magnetic:hover {
|
|
transform: translate(var(--mouse-offset-x, 0), var(--mouse-offset-y, 0));
|
|
}
|
|
|
|
/* Slide in animation */
|
|
@keyframes slideInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Improved text styling */
|
|
.urgency-text {
|
|
color: var(--primary-color);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.highlight-text {
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Responsive Design for New Sections */
|
|
@media (max-width: 768px) {
|
|
.benefits-grid,
|
|
.stories-grid,
|
|
.trust-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.story-card {
|
|
height: auto;
|
|
}
|
|
|
|
.story-image {
|
|
height: 180px;
|
|
}
|
|
|
|
.trust-card {
|
|
padding: 1.5rem 1rem;
|
|
}
|
|
|
|
.package-selector {
|
|
padding: 0.5rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.modern-card {
|
|
padding: 2rem;
|
|
min-height: 280px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.roi-calculator {
|
|
padding: 0.5rem;
|
|
}
|
|
}
|
|
|