/* Summatrack Landing Page Styles */

:root {
    --primary-color: #0d6efd;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --menu-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --hover-transform: translateY(-5px);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    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: var(--dark-color);
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #6c757d;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.text-gradient {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8f9fa 25%,
        #ffffff 50%,
        #e9ecef 75%,
        #ffffff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.text-gradient::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(1px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Navigation Styles */
.navbar {
    background: var(--primary-gradient) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--menu-shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--primary-gradient) !important;
    padding: 0.5rem 0;
}

.navbar:hover {
    background: var(--primary-gradient) !important;
}

.navbar.show {
    background: var(--primary-gradient) !important;
}

.navbar-brand {
    text-decoration: none !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: var(--hover-transform);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #667eea;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.brand-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    transform: rotate(360deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: var(--text-shadow);
}

.brand-subtitle {
    font-size: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    line-height: 1;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::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;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: var(--hover-transform);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    background: var(--primary-gradient);
    border: none;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: var(--hover-transform);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-gradient);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
    position: relative;
    overflow: visible;
}

/* Simple text effects */
.text-gradient {
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(var(--primary-rgb), 0.2),
        rgba(var(--secondary-rgb), 0.2)
    );
    border-radius: 8px;
    filter: blur(8px);
    opacity: 0;
    animation: subtleGlow 3s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.9),
        rgba(118, 75, 162, 0.9),
        rgba(255, 255, 255, 0.8)
    );
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp linear infinite;
    opacity: 1;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.7);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) rotate(36deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(50vh) rotate(180deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) rotate(324deg) scale(0.8);
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive adjustments for text animations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .word-animate {
        transform: translateY(20px) rotateX(45deg);
    }
    
    @keyframes wordReveal {
        0% {
            opacity: 0;
            transform: translateY(20px) rotateX(45deg);
        }
        100% {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
        }
    }
    
    .floating-particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight-word::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        filter: blur(5px);
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        padding-bottom: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 20px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:first-child {
        margin-bottom: 15px;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-badges {
        gap: 10px;
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .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;
}

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

.hero-buttons .btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Testimonial Avatars */
.testimonial-avatars {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.avatars-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    margin-left: -10px;
    transition: all 0.3s ease;
    position: relative;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.avatar:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.avatar:hover img {
    transform: scale(1.05);
}

.avatar-more {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.5rem;
}

.testimonial-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.testimonial-label {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.dashboard-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.preview-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-dots span:first-child {
    background: #ff5f56;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:last-child {
    background: #27ca3f;
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    animation: floatSoft 3s ease-in-out infinite;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.stat-card:nth-child(1) {
    animation-delay: 0s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

.stat-card i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-content {
    padding-right: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.benefit-text p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: var(--hover-transform);
}

.stat-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: var(--hover-transform);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-card p {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #000000;
    
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
}



.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 23% 78%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 77% 82%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 68% 68%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 33% 58%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 15% 45%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 85% 55%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 1) 1px, transparent 1px),
                radial-gradient(circle at 55% 85%, rgba(255, 255, 255, 1) 1px, transparent 1px);
    animation: sparkleEffect 4s linear infinite;
}

@keyframes sparkleEffect {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0.3;
    }
    70% {
        opacity: 0;
    }
    80% {
        opacity: 0.9;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.footer-brand .brand-icon {
    background: var(--primary-gradient);
    color: var(--white);
}

.footer-brand .brand-name {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .brand-subtitle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Social Media */
.social-media {
    margin-top: 25px;
}

.social-title {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.2),
        rgba(108, 117, 125, 0.2)
    );
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 12px;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(13, 110, 253, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.4),
        rgba(108, 117, 125, 0.4)
    );
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    color: var(--light-color);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    color: var(--light-color);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links li a i {
    font-size: 0.7rem;
    margin-right: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-links li a:hover i {
    opacity: 1;
    color: var(--primary-color);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
    justify-content: flex-start;
}

.contact-item:hover {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.contact-item .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    color: var(--light-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    text-align: left;
    justify-content: center;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--light-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(13, 110, 253, 0.2);
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.brand-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-badges {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(13, 110, 253, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.badge-item i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .stat-item:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        padding: 7rem 0 2rem 0;
        min-height: auto;
    }
    
    .hero-title {
        margin-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 6rem 0 2rem 0;
        min-height: auto;
    }
    
    .contact-item {
        padding: 14px;
        gap: 14px;
        align-items: center;
        justify-content: flex-start;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
        text-align: left;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .brand-container {
        gap: 12px;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
    
    .feature-card,
    .contact-card {
        padding: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-preview {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-top: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .feature-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-item {
        padding: 12px;
        gap: 12px;
        text-align: left;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    /* Responsive adjustments for testimonials */
    .testimonial-avatars {
        margin-top: 2rem;
        text-align: center;
    }
    
    .avatars-container {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        margin-left: -8px;
    }
    
    .testimonial-count {
        font-size: 1.3rem;
    }
    
    .testimonial-label {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Simple Cookie Consent Popup */
.cookie-consent-simple {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-consent-simple.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-simple-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-simple-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
}

.cookie-simple-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-btn-simple {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.cookie-accept-simple {
    background: #10b981;
    color: white;
}

.cookie-accept-simple:hover {
    background: #059669;
    transform: translateY(-1px);
}

.cookie-configure-simple {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-configure-simple:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Detailed Cookie Configuration Popup */
.cookie-consent-detailed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-consent-detailed.show {
    opacity: 1;
    visibility: visible;
}

.cookie-detailed-content {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.cookie-consent-detailed.show .cookie-detailed-content {
    transform: scale(1);
}

.cookie-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-detailed-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cookie-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cookie-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-detailed-text {
    text-align: left;
}

.cookie-detailed-text p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
    opacity: 1;
}

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

.cookie-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.cookie-category h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.cookie-description {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 44px;
}

/* Cookie Switch Styles */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #10b981;
}

input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

input:disabled + .cookie-slider {
    background-color: #10b981;
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-detailed-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.cookie-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.cookie-accept {
    background: #10b981;
    color: white;
}

.cookie-accept:hover {
    background: #059669;
    transform: translateY(-1px);
}

.cookie-accept-all {
    background: #3b82f6;
    color: white;
}

.cookie-accept-all:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.cookie-reject {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for cookie popups */
@media (max-width: 768px) {
    .cookie-consent-simple {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 16px;
    }
    
    .cookie-simple-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn-simple {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .cookie-detailed-content {
        padding: 25px;
        margin: 15px;
        max-height: 85vh;
    }
    
    .cookie-detailed-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-detailed-text p {
        font-size: 0.85rem;
    }
    
    .cookie-category {
        padding: 12px;
    }
    
    .cookie-description {
        font-size: 0.8rem;
        padding-left: 40px;
    }
    
    .cookie-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .cookie-switch {
        width: 40px;
        height: 22px;
    }
    
    .cookie-slider:before {
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 3px;
    }
    
    input:checked + .cookie-slider:before {
        transform: translateX(18px);
    }
}

@media (max-width: 480px) {
    .cookie-consent-simple {
        padding: 14px;
    }
    
    .cookie-simple-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-detailed-content {
        padding: 20px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-detailed-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .cookie-detailed-header h3 {
        font-size: 1.1rem;
    }
    
    .cookie-category-header {
        gap: 10px;
    }
    
    .cookie-description {
        padding-left: 36px;
        font-size: 0.75rem;
    }
    
    .cookie-detailed-actions {
        gap: 8px;
        margin-top: 15px;
    }
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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