/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Mobile container fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
}

/* Typography with WCAG AAA compliance */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827; /* Improved contrast */
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #111827;
}

h3 {
    font-size: 1.5rem;
    color: #1f2937;
}

p {
    margin-bottom: 1rem;
    color: #374151; /* Improved contrast from #666 */
    line-height: 1.6;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95); /* High contrast on dark background */
}

.section-subtitle {
    color: #4b5563; /* Better contrast than #666 */
}

.section-description {
    color: #4b5563; /* Better contrast */
}

/* Improved contrast for service cards */
.service-card p {
    color: #4b5563; /* Better contrast than #6b7280 */
    line-height: 1.7;
}

.service-card h3 {
    color: #111827; /* Improved contrast */
}

/* Better contrast for testimonials */
.testimonial-text {
    color: #1f2937; /* Much better contrast than #374151 */
    line-height: 1.7;
}

.author-info h4 {
    color: #111827; /* Improved contrast */
}

.author-info span {
    color: #4b5563; /* Better contrast than #6b7280 */
}

/* Improved contrast for feature content */
.feature-content h4 {
    color: #111827;
}

.feature-content p {
    color: #4b5563;
    line-height: 1.7;
}

/* Better FAQ contrast */
.faq-question h4 {
    color: #111827;
}

.faq-answer p {
    color: #1f2937; /* Much better contrast */
    line-height: 1.7;
}

/* Call section improvements */
.call-content h2 {
    color: white;
    margin-bottom: 16px;
}

.call-content p {
    color: #e5e7eb; /* Better contrast than #d1d5db */
    font-size: 18px;
    margin-bottom: 40px;
}

/* Footer contrast improvements */
.footer-section p {
    color: #e5e7eb; /* Better contrast */
}

.contact-info p {
    color: #e5e7eb;
}

.footer-bottom-content {
    color: #d1d5db;
}

/* Focus indicators for accessibility */
*:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
    border-radius: 4px;
}

.btn:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to main content for screen readers */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2563eb;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-to-main:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-background {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%),
                    url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1920&h=1080&fit=crop') center/cover;
    }
    
    .btn-primary {
        background: #1e40af;
        border: 2px solid #ffffff;
    }
    
    .btn-outline {
        border: 3px solid #1e40af;
        background: #ffffff;
    }
}

/* Aria labels and screen reader support */
.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;
}

/* Enhanced Buttons with Micro-animations */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover::after {
    width: 100%;
}

.btn-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    position: relative;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f59e0b, #d97706, #f59e0b);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.5);
}

.btn-hero:hover::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-service {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-service::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.6s ease;
}

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

.btn-service:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Demo Purchase CTA Styling */
.demo-purchase-banner {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.demo-purchase-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.purchase-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-purchase {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
    line-height: 1.3;
}

.btn-purchase,
.btn-purchase-alt,
.btn-purchase-service,
.btn-purchase-footer,
.btn-floating-purchase {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.btn-purchase:hover,
.btn-purchase-alt:hover,
.btn-purchase-service:hover,
.btn-purchase-footer:hover,
.btn-floating-purchase:hover {
    cursor: pointer !important;
}

.btn-purchase:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Purchase Banner Section */
.purchase-banner-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.purchase-banner-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #10b981;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purchase-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.8s ease;
}

.purchase-banner-content:hover::before {
    left: 100%;
}

.purchase-banner-content h3 {
    color: #1f2937;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
}

.purchase-banner-content p {
    color: #4b5563;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.btn-purchase-alt {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-purchase-alt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn-purchase-alt:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.5);
}

.btn-purchase-alt:hover::after {
    width: 300px;
    height: 300px;
}

/* Purchase Service Card */
.purchase-service-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: 3px solid #047857 !important;
    position: relative;
    overflow: hidden;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.purchase-service-card h3,
.purchase-service-card p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.purchase-service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.purchase-service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-purchase-service {
    background: white;
    color: #059669;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-purchase-service:hover {
    background: #f0fdf4;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: #f0fdf4;
}

/* Footer Purchase Section */
.footer-purchase-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    border-radius: 16px !important;
    border: 2px solid #10b981 !important;
    position: relative;
    overflow: hidden;
}

.footer-purchase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.footer-purchase-section h4 {
    color: #10b981 !important;
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.footer-purchase-section p {
    color: #d1d5db !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.btn-purchase-footer {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-purchase-footer:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Optimizations for Purchase CTAs */
@media (max-width: 768px) {
    .demo-purchase-banner {
        margin-top: 30px;
        padding: 20px;
        border-radius: 16px;
    }
    
    .demo-purchase-banner p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .btn-purchase {
        padding: 14px 24px;
        font-size: 15px;
        min-width: 240px;
        max-width: 90%;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
        height: auto;
        min-height: 48px;
    }
    
    .purchase-banner-section {
        padding: 40px 0;
    }
    
    .purchase-banner-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .purchase-banner-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .purchase-banner-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .btn-purchase-alt {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .purchase-service-card {
        order: -1; /* Move to top on mobile for better visibility */
    }
    
    .footer-purchase-section {
        margin-top: 20px;
        padding: 20px !important;
    }
    
    .footer-purchase-section h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .footer-purchase-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .btn-purchase-footer {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-purchase {
        min-width: 220px;
        max-width: 95%;
        padding: 12px 20px;
        font-size: 14px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
        min-height: 44px;
    }
    
    .demo-purchase-banner p {
        font-size: 15px;
    }
    
    .purchase-banner-content h3 {
        font-size: 22px;
    }
    
    .btn-purchase-alt {
        padding: 14px 24px;
        font-size: 15px;
    }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0;
    right: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
    width: 100%;
}

.navbar.scrolled .nav-container {
    padding: 12px 30px;
    height: 60px;
}

.nav-logo h2 {
    color: #2563eb;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover h2::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    height: 40px;
}

.nav-link:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #2563eb, #10b981);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Desktop: Show CTAs next to menu, not in menu */
@media (min-width: 1201px) {
    .nav-menu .nav-cta {
        display: none; /* Hide CTAs inside menu on desktop */
    }
    
    .desktop-cta {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        width: auto;
        box-shadow: none;
        padding: 0;
    }
}

/* Tablet and Mobile: Show hamburger menu */
@media (max-width: 1200px) {
    .desktop-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        max-height: 80vh;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 8px 0;
        width: 100%;
    }
    
    .nav-menu .nav-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        padding: 20px;
        border-top: 1px solid #e2e8f0;
        order: 999;
    }
    
    .nav-menu .nav-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Mobile First */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px; /* Remove horizontal padding for full width */
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(29, 78, 216, 0.9) 100%),
                url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1920&h=1080&fit=crop') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
    .hero-title {
        margin-top: 15px;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
}

/* Consistent Section Spacing - Mobile First */
.testimonials,
.services,
.why-choose-us,
.faq,
.call-section {
    padding: 60px 0;
}

/* Purchase banner section spacing */
.purchase-banner-section {
    padding: 50px 0;
}
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.stars::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.testimonial-card:hover .stars::after {
    width: 120px;
    height: 120px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #374151;
    margin-bottom: 35px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    quotes: '"' '"';
}

.testimonial-text::before {
    content: open-quote;
    font-size: 60px;
    color: rgba(37, 99, 235, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #2563eb, #10b981) border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

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

.profile-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64748b;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid #f1f5f9;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}

.testimonial-card:hover .profile-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #2563eb;
}

.author-info span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding-bottom: 20px; /* Add bottom padding to prevent cutoff */
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1f2937;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card .btn {
    margin-top: auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-list {
    margin: 40px 0;
    text-align: center;
}

.estimate-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}



.feature-content h4 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6b7280;
    margin: 0;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

.stat-card p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    color: #1f2937;
    font-size: 18px;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Call Section */
.call-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.call-content h2 {
    color: white;
    margin-bottom: 16px;
}

.call-content p {
    color: #d1d5db;
    font-size: 18px;
    margin-bottom: 40px;
}

.call-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.call-icon {
    font-size: 20px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #60a5fa;
    font-size: 24px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

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

.social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #60a5fa;
}

.contact-info p {
    margin-bottom: 8px;
    color: #d1d5db;
}

.contact-info strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

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

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

.footer-links a:hover {
    color: #60a5fa;
}

/* Mobile-First Responsive Design - Base styles for mobile */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 20px 60px; /* Increased top padding for tablet */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Consistent section spacing for tablet */
    .testimonials,
    .services,
    .why-choose-us,
    .faq,
    .call-section {
        padding: 70px 0;
    }
    
    .purchase-banner-section {
        padding: 50px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile-first navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 100px 20px 20px;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        font-weight: 600;
        padding: 15px 0;
        display: block;
        width: 100%;
        color: #1f2937;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:hover {
        color: #2563eb;
        background: rgba(37, 99, 235, 0.05);
        transform: translateX(10px);
    }
    
    /* Custom scrollbar for mobile menu */
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(37, 99, 235, 0.3);
        border-radius: 2px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(37, 99, 235, 0.5);
    }
    
    /* Move CTAs into mobile menu */
    .nav-menu .nav-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-top: 30px;
        order: 999;
        display: flex;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu .nav-cta .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }
    
    /* Navigation mobile adjustments */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        z-index: 999;
    }
    
    /* Better mobile spacing between elements */
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* Mobile container improvements */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Mobile hero with proper navbar clearance */
    .hero {
        padding: 120px 0 50px; /* Remove side padding for full width */
        min-height: 100vh;
        text-align: center;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-content .container {
        padding: 0 15px; /* Only container has padding */
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    /* Mobile grid layouts */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    /* Mobile testimonials */
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    /* Mobile why choose us */
    .feature-item {
        text-align: left;
        padding: 15px 0;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Mobile FAQ with better touch targets */
    .faq-question {
        padding: 20px 15px;
        font-size: 16px;
        min-height: 44px; /* WCAG touch target minimum */
        display: flex;
        align-items: center;
    }
    
    .faq-question h4 {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 10px;
    }
    
    .faq-answer p {
        padding: 0 15px 20px;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    /* Mobile call section */
    .call-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-call {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Mobile footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero {
        padding: 100px 0 40px; /* Remove side padding */
    }
    
    .hero-content .container {
        padding: 0 10px; /* Minimal container padding */
    }
    
    /* Extra mobile optimizations */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 30px 15px;
    }
    
    .nav-menu {
        padding: 100px 15px 30px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .nav-cta .btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Desktop and larger screens */
@media (min-width: 1025px) {
    .hero {
        padding: 80px 0 60px; /* Standard desktop padding */
        height: 100vh;
    }
    
    /* Generous section spacing for desktop */
    .testimonials,
    .services,
    .why-choose-us,
    .faq,
    .call-section {
        padding: 80px 0;
    }
    
    .purchase-banner-section {
        padding: 60px 0;
    }
    
    .hero-title {
        margin-top: 55px; /* Add spacing from navbar on desktop */
    }
}

/* Enhanced Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

/* Floating animation for hero elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.hero-content .btn-hero {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.btn-primary:hover {
    animation: pulse 2s infinite;
}

/* Gradient text animation */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title {
    background: linear-gradient(-45deg, #ffffff, #e0e7ff, #ffffff, #ddd6fe);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1025px) {
    .hero-title {
        margin-top: 55px;
    }
}

.btn-call {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-call::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.6s ease;
}

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

.btn-call:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.call-icon {
    font-size: 20px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    10%, 30% {
        transform: rotate(-10deg) scale(1.1);
    }
    20%, 40% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: smooth;
    }
}

/* Performance optimizations */
.service-card,
.testimonial-card,
.feature-item,
.btn {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Focus styles for accessibility */
*:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid rgba(37, 99, 235, 0.8);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-content .btn-hero {
        animation: none !important;
    }
    
    .call-icon {
        animation: none !important;
    }
}

/* Floating Purchase CTA */
.floating-purchase-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
}

.btn-floating-purchase {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: auto;
}

.btn-floating-purchase:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.purchase-icon {
    font-size: 16px;
}

.purchase-text {
    display: inline;
}

@media (max-width: 768px) {
    .floating-purchase-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating-purchase {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .purchase-text {
        display: none;
    }
    
    .purchase-icon {
        font-size: 18px;
    }
}

/* Desktop and larger screens */
@media (min-width: 1025px) {
    .hero {
        padding: 80px 0 60px; /* Standard desktop padding */
        height: 100vh;
    }
    
    /* Generous section spacing for desktop */
    .testimonials,
    .services,
    .why-choose-us,
    .faq,
    .call-section {
        padding: 80px 0;
    }
    
    .purchase-banner-section {
        padding: 60px 0;
    }
}