/* Modern Landing Page - Professional Design */

:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #434343 0%, #000000 100%);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.4);
    --hero-bg: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --hero-text: #ffffff;
    --hero-subtitle: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --hero-bg: linear-gradient(135deg, #f8f9fa, #e9ecef, #dee2e6);
    --hero-text: #1a1d29;
    --hero-subtitle: rgba(26, 29, 41, 0.75);
}

/* Reset & Base */
.landing-page {
    background: var(--bg-primary);
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

* {
    scroll-behavior: smooth;
}

/* Hero Section - Ultra Modern */
.hero-section {
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
    padding: 90px 0 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.08) 0%, transparent 70%);
    animation: gradientPulse 20s ease infinite;
    pointer-events: none;
    will-change: opacity;
}

@keyframes gradientPulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

/* Hero Content - Enhanced Typography */
.hero-content {
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--hero-text) 0%, #a8b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--hero-subtitle);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Buttons - Modern Design */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #1a1d29;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Trustpilot Widget Enhancement */
.trustpilot-widget {
    margin: 2rem 0;
    max-width: 400px;
    /*padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);*/
}

[data-theme="light"] .trustpilot-widget {
    /*background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);*/
}

/* Hero Visual - 3D Cards */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
    max-height: 380px;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: clamp(0.75rem, 1.5vw, 1.2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

[data-theme="light"] .floating-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    background: rgba(102, 126, 234, 0.2);
}

.floating-card:nth-child(1) {
    top: 5%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out 1.5s infinite;
}

.floating-card:nth-child(3) {
    bottom: 25%;
    left: 10%;
    animation: float 6s ease-in-out 3s infinite;
}

.floating-card:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation: float 6s ease-in-out 4.5s infinite;
}

.floating-card i {
    font-size: clamp(28px, 3vw, 36px);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-size: clamp(14px, 1.5vw, 16px);
    color: ##b3b3b3;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-30px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

/* Services Section - Card Grid */
.services-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--bg-primary);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-secondary), transparent);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.service-feature {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .service-feature {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-feature:hover::before {
    transform: scaleX(1);
}

.service-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-feature:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-feature > p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-list i {
    color: #4ade80;
    font-size: 1rem;
}

/* Features Section - Why Choose Us */
.features-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

[data-theme="light"] .feature-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Contact Section - Modern Cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
}

.contact-info-card {
    background: transparent !important;
    border: none !important;
    padding: 2rem;
}

.contact-info-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-details p a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details p a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.contact-details small {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }

    .hero-section {
        min-height: 100vh;
        max-height: none;
        height: auto;
        padding: 110px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .services-grid,
    .features-grid,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-feature,
    .feature-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .trustpilot-widget iframe{
        height: 45px !important;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-method {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-details small {
        font-size: 0.8rem;
    }
    
    .floating-card:nth-child(3),
    .floating-card:nth-child(4) {
        /*display: none;*/
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-feature,
    .feature-item,
    .floating-card {
        animation-duration: 1s;
        animation-fill-mode: both;
    }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    .service-feature,
    .feature-item {
        background: rgba(30, 30, 46, 0.5);
    }
}
