/* SocialSnappy Main Stylesheet - Inspired by SocialAI */
:root {
    --primary-color: #3a56e4; /* Slightly adjusted blue */
    --primary-dark: #2a3f9d;
    --accent: #ff6b47; /* Vibrant orange-red */
    --secondary: #6c63ff; /* Purple accent */
    --success: #2ecc71; /* Green for success states */
    --white: #fff;
    --gray: #666;
    --dark-gray: #333;
    --light-gray: #f8fafd;
    --border: #e5e7eb;
    --shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
    --shadow-hover: 0 8px 24px rgba(58, 86, 228, 0.15);
    --font-main: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --font-lg: 1.25rem;
    --font-xl: 2.4rem;
    --spacing-md: 18px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

body {
    font-family: var(--font-main);
    background: var(--light-gray);
    color: #222;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}
.header.scrolled {
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 10px;
}
.logo-text {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(58, 86, 228, 0.12);
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}
.logo-text:hover {
    transform: scale(1.02);
}
.logo-highlight {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 2px;
}
.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}
.nav-menu li a:hover {
    color: var(--accent);
}
.nav-buttons {
    display: flex;
    gap: 12px;
}
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.btn:active::after {
    width: 300px;
    height: 300px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(58, 86, 228, 0.25);
}
.btn-outline {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(58, 86, 228, 0.15);
}
.btn-lg {
    font-size: 1.15rem;
    padding: 13px 32px;
}
.btn-block {
    width: 100%;
    display: block;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.hamburger .bar {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e6f5 50%, #d5ddf8 100%);
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}
.hero.glass-effect {
    position: relative;
    z-index: 1;
}
.hero.glass-effect::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 86, 228, 0.15), rgba(108, 99, 255, 0.1));
    z-index: -1;
    filter: blur(60px);
    animation: pulse 8s infinite alternate;
}
.hero.glass-effect::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 71, 0.1), rgba(255, 107, 71, 0.05));
    z-index: -1;
    filter: blur(80px);
    animation: pulse 10s infinite alternate-reverse;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.hero-content p {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 32px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}
.hero-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.feature-item i {
    color: var(--accent);
    font-size: 1.2em;
}
.hero-image {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.image-wrapper {
    position: relative;
    display: inline-block;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}
.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3;
}
.floating-badge.top-right {
    top: -15px;
    right: -15px;
}
.floating-badge.bottom-left {
    bottom: -15px;
    left: -15px;
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}
.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 36px 28px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(229, 231, 235, 0.8);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-icon {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}
.feature-card p {
    color: #444;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary));
    color: #fff;
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(58, 86, 228, 0.2);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}
.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
.cta-content:hover {
    transform: translateY(-5px);
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #fff;
}
.cta-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    background: #fff;
    padding: 48px 0 32px 0;
}
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}
.pricing-toggle .switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}
.pricing-toggle .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #e5e7eb;
    border-radius: 24px;
    transition: .4s;
}
.pricing-toggle .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: .4s;
}
.pricing-toggle input:checked + .slider {
    background: #c3cfe2;
}
.pricing-toggle input:checked + .slider:before {
    transform: translateX(24px);
}
.pricing-toggle .discount {
    color: var(--accent);
    font-weight: 600;
    margin-left: 4px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.7);
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.pricing-card.popular {
    border: none;
    box-shadow: 0 12px 40px rgba(58, 86, 228, 0.15);
    background: linear-gradient(to bottom right, #fff, #f8fafd);
    z-index: 2;
}
.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent));
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}
.pricing-header .price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-header .period {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px 0;
    text-align: left;
}
.pricing-features li {
    color: #444;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5px;
}
.pricing-features i {
    color: var(--accent);
    font-size: 1.1rem;
}
.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, var(--accent), var(--primary-color));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(255,90,54,0.2);
}

/* Testimonials */
.testimonials {
    background: #f8fafd;
    padding: 48px 0 32px 0;
}
.testimonials-slider {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 36px 28px;
    max-width: 380px;
    min-width: 260px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 60px;
    color: rgba(58, 86, 228, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--accent);
}
.testimonial-content p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 18px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 2px 0;
    font-weight: 600;
}
.author-info p {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}
.testimonial-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}
.testimonial-controls button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.testimonial-controls button:hover {
    background: var(--accent);
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 48px 0 32px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq-question h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}
.faq-toggle {
    color: var(--accent);
    font-size: 1.2rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 71, 0.1);
    border-radius: 50%;
}
.faq-answer {
    color: #444;
    font-size: 1rem;
    margin-top: 10px;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent);
    color: white;
}

/* Contact Section */
.contact {
    background: #f8fafd;
    padding: 48px 0 32px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-info p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.contact-methods {
    margin-bottom: 18px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.contact-method i {
    color: var(--primary-color);
    font-size: 1.3rem;
}
.contact-method h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 0 0 2px 0;
    font-weight: 600;
}
.contact-method p {
    font-size: 0.98rem;
    color: #888;
    margin: 0;
}
.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.2s;
}
.social-links a:hover {
    color: var(--accent);
}
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.form-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 86, 228, 0.1);
    background: #fff;
}
.contact-form button {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: var(--primary-dark);
}
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

/* Footer */
.footer {
    background: #fff;
    color: #222;
    padding: 48px 0 0 0;
    border-top: 1px solid var(--border);
    margin-top: 48px;
}
/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent));
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-container {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-wrapper img {
    height: 38px;
    filter: brightness(1.2);
}

.footer-tagline {
    margin: 4px 0 0 0;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.footer-social-top {
    margin-top: 1.5rem;
}

.footer-newsletter {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
}

.footer-newsletter h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 86, 228, 0.1);
}

.btn-subscribe {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(58, 86, 228, 0.15);
}

/* Footer Grid Section */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-links h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-links li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 25px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.95rem;
    color: var(--primary-color);
}

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

.footer-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.03);
}

.footer-social a:hover {
    color: white;
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Horizontal links in footer bottom */
.horizontal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links ul {
    margin: 0;
}

.footer-bottom-links li {
    margin-bottom: 0;
}

.footer-bottom-links li:hover {
    transform: none;
}

/* Additional Modern Elements */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(58, 86, 228, 0.25);
    position: relative;
    overflow: hidden;
}

.badge::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: all 0.5s;
}

.badge:hover::before {
    left: 100%;
}

.animate-pulse {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.highlight-text {
    color: var(--accent);
    font-weight: 700;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}
.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

/* Modern Card Styles */
.modern-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}
.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.modern-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 70%, rgba(58, 86, 228, 0.05) 100%);
    z-index: 1;
}

/* Glass Morphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 24px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modern Nav Menu for Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 101;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    .nav-menu li a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 8px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Slide animations */
.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-container, .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-logo-wrapper {
        justify-content: center;
    }
    
    .footer-links h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .features-grid, .pricing-grid, .faq-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .feature-card, .pricing-card, .testimonial-card {
        padding: 24px 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}
