* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus management */
*:focus {
    outline: 2px solid #19BFC2;
    outline-offset: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #19BFC2;
    outline-offset: 2px;
}

/* Error message styling */
.error-message {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

/* Button loader */
.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

.submit-btn.loading .btn-text {
    opacity: 0.7;
}

.submit-btn.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #065f46, #1e3a8a);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25,191,194,0.25), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.9; }
    100% { opacity: 1; }
}

/* Hero Section */
.hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 70vh;
    /* Removed static background image for video background */
/* Hero background video styles */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    pointer-events: none;
}
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 160px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-left {
    color: white;
}

.logo {
    margin-top: 10px !important;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(10px 10px 5px rgba(255, 255, 255, 0.2))
          drop-shadow(-10px -10px 5px rgba(255, 255, 255, 0.2))
          drop-shadow(10px -10px 5px rgba(255, 255, 255, 0.2))
          drop-shadow(-10px 10px 5px rgba(255, 255, 255, 0.2));
   
}

.hero h1 {
   
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    background: linear-gradient(90deg, #19BFC2, #2563eb, #19BFC2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    animation: highlight-gradient-move 2.5s linear infinite;
}

@keyframes highlight-gradient-move {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit .icon {
    font-size: 1.5rem;
}

/* Header CTA */
.header-cta {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 10;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
}

.stars {
    font-size: 16px;
    margin-bottom: 2px;
    color: #FFD700;
}

.rating-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
  
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.form-badges {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: #19BFC2;
    font-weight: 600;
}

/* User Type Toggle */
.user-type {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    padding: 6px;
    border-radius: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.user-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: #64748b;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.user-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 191, 194, 0.1), transparent);
    transition: left 0.6s ease;
}

.user-btn:hover::before {
    left: 100%;
}

.user-btn.active {
    background: linear-gradient(135deg, #19BFC2, #0ea5e9);
    color: white;
    box-shadow: 0 4px 12px rgba(25, 191, 194, 0.3);
    transform: translateY(-1px);
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
  
    color: #2563eb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
    font-family: inherit;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #19BFC2;
    box-shadow: 0 0 0 4px rgba(25, 191, 194, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #94a3b8;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0.7;
}

/* Enhanced select styling */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2319BFC2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #10b981;
}

/* Loading state for submit button */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #2563eb, #19BFC2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Pulse animation for submit button */
@keyframes pulse-button {
    0% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
}

.submit-btn:not(:hover):not(:active) {
    animation: pulse-button 3s infinite;
}

.form-guarantees {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #19BFC2;
    font-weight: 600;
    flex-wrap: wrap;
}

.form-security {
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0 30px 0;
    background: #e5e7eb;
    overflow-x: auto;
    min-height: 280px;
    text-align: center;
    width: 100%;
}

.badges-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: 200px;
    position: relative;
    padding: 20px;
}

.badge-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    min-width: 145px;
    background: #e5e7eb;
    border-radius: 16px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
    box-sizing: border-box;
    overflow: hidden;
}

.badge-item:hover {
    transform: scale(1.04);
    z-index: 2;
}

.badge-logo img,
.bbb-logo img,
.nabcep img,
.tesla img,
.google img,
.nc-circle img,
.sp-circle img {
    max-height: 200px;
    max-width: 200px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* BBB Badge */
.bbb-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #003366;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
}

.bbb-icon {
    font-size: 2rem;
}

.bbb-text {
    font-size: 2rem;
    font-weight: 800;
}

.bbb-rating {
    background: #0066CC;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* NABCEP Badge */
.nabcep {
    background: #1e40af;
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
}

.nabcep-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nabcep-sub {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
}

/* NC Licensed Badge */
.nc-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #1e40af;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e40af;
}

.nc-text {
    font-size: 14px;
    font-weight: 700;
}

.nc-sub {
    font-size: 12px;
    font-weight: 600;
}

/* Google Badge */
.google {
    text-align: center;
}

.google-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-sub {
    font-size: 1.2rem;
    color: #666;
    margin: 5px 0;
}

.google-stars {
    font-size: 1.5rem;
    color: #FFD700;
}

/* Tesla Badge */
.tesla {
    background: #000;
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
}

.tesla-text {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.tesla-sub {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
}

.tesla-cert {
    font-size: 0.9rem;
    color: #ccc;
}

/* Solar Power World Badge */
.sp-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e40af;
    text-align: center;
}

.sp-text {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.sp-world {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.sp-top {
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-content {
        gap: 80px;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 15px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-main-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero {
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .hero-main-heading {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .form-container {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .header-cta {
        position: static;
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .benefits {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-badges {
        padding: 30px 0 20px 0;
        min-height: 220px;
    }
    
    .badges-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 10px;
        min-height: 160px;
    }
    
    .badge-item {
        height: 140px;
        min-width: 120px;
        flex: 0 0 calc(50% - 10px);
        max-width: 150px;
    }
    
    .hero {
        min-height: 50vh;
        padding: 20px 0;
    }
    
    .hero-main-heading {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .benefits {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
    
    .benefit {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .urgency-banner {
        font-size: 13px;
        padding: 10px 5px;
        text-align: center;
    }
    
    .urgency-banner span {
        display: block;
        margin: 5px 0 0 0 !important;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        padding: 20px 0 15px 0;
        min-height: 180px;
    }
    
    .badges-grid {
        flex-direction: column;
        gap: 15px;
        padding: 5px;
        min-height: 120px;
    }
    
    .badge-item {
        height: 100px;
        min-width: 280px;
        max-width: 300px;
        flex: none;
        width: 90%;
        margin: 0 auto;
    }
    
    /* Scale badge content for mobile */
    .bbb-icon {
        font-size: 1.5rem;
    }
    
    .bbb-text {
        font-size: 1.5rem;
    }
    
    .bbb-rating {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .nabcep-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .nabcep-sub {
        font-size: 1rem;
    }
    
    .nc-circle {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }
    
    .nc-text {
        font-size: 0.8rem;
    }
    
    .nc-sub {
        font-size: 0.7rem;
    }
    
    .urgency-banner {
        font-size: 12px;
        padding: 8px 5px;
    }
    
    .hero {
        min-height: 45vh;
        padding: 15px 0;
    }
    
    .hero-main-heading {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-card.featured {
    border: 2px solid #19BFC2;
    background: linear-gradient(135deg, #e6fcfc, #ffffff);
}

.testimonial-card.featured::before {
    content: "⭐ FEATURED";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #19BFC2;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.customer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.customer-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.savings {
    background: #19BFC2;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Recent Activity */
.recent-activity {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.recent-activity h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #19BFC2;
}

.activity-dot {
    width: 12px;
    height: 12px;
    background: #19BFC2;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.activity-text {
    flex: 1;
    color: #374151;
    font-weight: 500;
}

.activity-time {
    color: #64748b;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-background.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.how-it-works .section-header h2 {
    color: white;
}

.how-it-works .section-header p {
    color: #cbd5e1;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255,255,255,0.95);
    color: #1e293b;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #19BFC2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(25, 191, 194, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-detail {
    background: #19BFC2;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.step-arrow {
    font-size: 2rem;
    color: #19BFC2;
    font-weight: bold;
    text-align: center;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.urgency-message {
    margin-bottom: 50px;
}

.urgency-message h2 {
    font-size: 80px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.urgency-message p {
    font-size: 1.2rem;
    color: #64748b;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #19BFC2;
    margin-bottom: 10px;
    width:auto;
    gap: 10px;
}


.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 250px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #10b981, #2563eb);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FF5722, #FF8F00);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #059669, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-btn.secondary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FF5722, #FF8F00);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

/* Footer */
.footer {
    background: #34425a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.footer-logo p {
    color: #cbd5e1;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .urgency-message h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* Social Media Icons */
.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #cbd5e1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Update footer content layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 30px;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

.hero-main-heading {
    font-size: 3.2rem;
    line-height: 1.08;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    /* Responsive adjustment */
}
@media (max-width: 900px) {
    .hero-main-heading {
        font-size: 2.2rem;
    }
}

.logo-wrapper {
    margin-bottom: 0 !important;
}
.logo {
    margin-top: -20px !important;
}

.logo-badge-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: -35px;
}

