/* Enhanced CSS with Bootstrap Integration */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Custom CSS Variables */
:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --accent-brown: #8b4513;
    --warm-yellow: #f4d03f;
    --bright-orange: #ff8c00;
    --light-green: #90ee90;
    --dark-brown: #654321;
    --cream: #f5f5dc;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-warm: linear-gradient(135deg, var(--warm-yellow), var(--bright-orange));
    --gradient-highlight: linear-gradient(135deg, #ffc107, #ff8c00);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Bootstrap Overrides */
:root {
    --bs-primary: var(--primary-green);
    --bs-secondary: var(--secondary-green);
    --bs-warning: var(--warm-yellow);
    --bs-success: var(--light-green);
    --bs-dark: var(--dark-brown);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--primary-green) !important;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-green) !important;
    transform: scale(1.02);
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--warm-yellow);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    color: var(--primary-green);
    transform: rotate(5deg);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Desktop navbar - hide menu items, show only buttons */
@media (min-width: 992px) {
    .navbar-nav {
        display: none !important;
    }
    
    .navbar-collapse {
        justify-content: flex-end !important;
    }
    
    .navbar-collapse .ms-3 {
        margin-left: 0 !important;
    }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500 !important;
    color: var(--primary-green) !important;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--secondary-green) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--warm-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Button Enhancements */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green)) !important;
}

.btn-warning {
    background: var(--gradient-warm) !important;
    border: none !important;
    color: var(--dark-brown) !important;
    font-weight: 600 !important;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #ffc107, var(--warm-yellow)) !important;
}

.btn-outline-primary {
    font-weight: 500;
    border-width: 2px;
    border-color: var(--primary-green);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

.btn-outline-light {
    font-weight: 500;
    border-width: 2px;
}

/* Navbar specific button styling */
.navbar .btn-outline-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 25px;
    margin-right: 0.5rem;
}

.navbar .btn-gradient {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Redesigned Hero Section */
.hero-section-new {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #1a3d1a, #2d5a27, #4a7c59);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 50px;
}

.hero-bg {
    background: url('https://images.unsplash.com/photo-1581578731548-c6a0c3f2fcc0?w=1920&h=1080&fit=crop') center/cover;
    opacity: 1;
    z-index: 1;
}

.hero-video-overlay {
    background: linear-gradient(135deg, rgba(26, 61, 26, 0.7), rgba(45, 90, 39, 0.6), rgba(74, 124, 89, 0.5));
    z-index: 2;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    animation: particleMove 20s linear infinite;
    z-index: 3;
}

@keyframes particleMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Hero Content */
.hero-content-new {
    position: relative;
    z-index: 10;
    color: white;
    padding: 3rem 0 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
}

.hero-title-new {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.highlight-villages {
    background: var(--gradient-highlight);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 500px;
    letter-spacing: 0.01em;
}

/* Hero Buttons */
.btn-hero-primary {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--warm-yellow), var(--bright-orange));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    color: black;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, var(--bright-orange), var(--warm-yellow));
    color: black;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.btn-hero-primary::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: all 0.6s ease;
}

.btn-hero-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary {
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    letter-spacing: 0.01em;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    color: white;
}

/* Hero Stats */
.hero-stats {
    margin-top: 2rem;
}

.stat-item-hero {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-hero:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number-hero {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.stat-label-hero {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.01em;
}

/* Hero Demo Section */
.hero-demo {
    position: relative;
    z-index: 10;
    padding: 2rem 0 2rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.app-logo {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.app-logo i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.app-status {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #28a745;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

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

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card-app {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.feature-card-app:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon-app {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.2rem;
}

.feature-card-app h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card-app p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.active-feature {
    border-left-color: var(--warm-yellow) !important;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 140, 0, 0.05)) !important;
}

.recording-indicator {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.notification-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--warm-yellow);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Success Notification Animation */
.success-notification {
    animation: successPulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.success-notification:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

/* Floating Elements */
.floating-elements-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    font-family: 'Inter', sans-serif;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.floating-card i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--warm-yellow);
}

.floating-card:nth-child(1) {
    top: 10%;
    right: 10%;
}

.floating-card:nth-child(2) {
    top: 50%;
    left: 5%;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    right: 20%;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.scroll-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
}

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

/* Typography Hierarchy */
h1, .h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2, .h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3, .h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h4, .h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

h5, .h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

h6, .h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

p, .lead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.display-1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.display-2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.display-3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--warm-yellow);
}

.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-soft);
}

/* Process Steps */
.process-step {
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.process-step p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-number {
    position: relative;
    display: inline-block;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-badge {
    font-family: 'Inter', sans-serif;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--warm-yellow);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    letter-spacing: -0.01em;
}

.process-step:hover .step-icon-wrapper {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-card {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--warm-yellow);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

/* Testimonials Infinite Scroll */
.testimonials-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.testimonials-row {
    display: flex;
    margin-bottom: 2rem;
    overflow: hidden;
}

.testimonials-row:last-child {
    margin-bottom: 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.testimonials-row-left .testimonials-track {
    animation-name: scrollLeft;
}

.testimonials-row-right .testimonials-track {
    animation-name: scrollRight;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    min-width: 350px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quote-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: var(--warm-yellow);
    transform: scale(1.1);
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    border-color: var(--warm-yellow);
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Infinite Scroll Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* CTA Section - New Design */
.cta-section-new {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

@media (min-width: 1200px) {
    .cta-section-new .container {
        max-width: 1250px;
        padding-left: 0;
        padding-right: 0;
    }
    
    .cta-card {
        width: 100%;
        margin: 0;
    }
    
    .cta-content {
        padding: 3.5rem 3rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .arc-1 { width: 120px; height: 120px; }
    .arc-2 { width: 160px; height: 160px; }
    .arc-3 { width: 200px; height: 200px; }
    .arc-4 { width: 240px; height: 240px; }
    .arc-5 { width: 280px; height: 280px; }
}

.cta-card {
    background: var(--primary-green);
    border-radius: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.cta-card:hover::before {
    transform: translateX(100%);
}

.cta-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--warm-yellow);
}

.cta-card:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}

.cta-content {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.cta-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-title .text-warning {
    color: var(--warm-yellow) !important;
    font-weight: 800;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-title .text-warning::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--warm-yellow);
    transition: width 0.3s ease;
}

.cta-title:hover .text-warning::after {
    width: 100%;
}

.cta-title:hover .text-warning {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: default;
}

.cta-description:hover {
    opacity: 1;
    transform: translateX(5px);
    color: white;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn-primary,
.cta-btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(0);
}

.cta-btn-primary::before,
.cta-btn-secondary::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 ease;
}

.cta-btn-primary:hover::before,
.cta-btn-secondary:hover::before {
    left: 100%;
}

.cta-btn-primary {
    background: #000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background: #333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.cta-btn-secondary {
    background: #000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary:hover {
    background: #333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.cta-btn-primary i,
.cta-btn-secondary i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.cta-btn-primary:hover i,
.cta-btn-secondary:hover i {
    opacity: 1;
    transform: translateX(5px) scale(1.1);
}

.cta-btn-primary:active i,
.cta-btn-secondary:active i {
    transform: translateX(2px) scale(1.05);
    transition: all 0.1s ease;
}

.cta-graphic {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    overflow: hidden;
    cursor: pointer;
}

.cta-graphic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-graphic:hover::before {
    opacity: 1;
}

.concentric-arcs {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.concentric-arcs:hover .arc {
    animation-duration: 2s;
}

.arc {
    position: absolute;
    border-radius: 50%;
    border: 4px solid;
    opacity: 0.8;
    animation: arcPulse 6s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arc:hover {
    transform: scale(1.1);
    opacity: 1;
    border-width: 6px;
}

.arc-1 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 255, 255, 0.9);
    animation-delay: 0s;
}

.arc-2 {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 255, 255, 0.7);
    animation-delay: 0.8s;
}

.arc-3 {
    width: 180px;
    height: 180px;
    border-color: rgba(255, 255, 255, 0.5);
    animation-delay: 1.6s;
}

.arc-4 {
    width: 220px;
    height: 220px;
    border-color: rgba(255, 255, 255, 0.3);
    animation-delay: 2.4s;
}

.arc-5 {
    width: 260px;
    height: 260px;
    border-color: rgba(255, 255, 255, 0.1);
    animation-delay: 3.2s;
}

/* Interactive Loading States */
.cta-btn-primary.loading,
.cta-btn-secondary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cta-btn-primary.loading::after,
.cta-btn-secondary.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 white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Ripple Effect */
.cta-btn-primary,
.cta-btn-secondary {
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::after,
.cta-btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn-primary:active::after,
.cta-btn-secondary:active::after {
    width: 300px;
    height: 300px;
}

/* Scroll-triggered animations */
.cta-section-new {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section-new.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cta-card.in-view {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

/* Floating particles effect */
.cta-graphic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    animation: floatParticles 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes floatParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes arcPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.02) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: scale(1.02) rotate(270deg);
        opacity: 0.6;
    }
}

/* Responsive Design for CTA */
@media (max-width: 992px) {
    .cta-content {
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .cta-section-new {
        padding: 3rem 0;
    }
    
    .cta-card {
        min-height: 350px;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        max-width: none;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .arc-1 { width: 70px; height: 70px; }
    .arc-2 { width: 95px; height: 95px; }
    .arc-3 { width: 120px; height: 120px; }
    .arc-4 { width: 145px; height: 145px; }
    .arc-5 { width: 170px; height: 170px; }
}

@media (max-width: 576px) {
    .cta-section-new {
        padding: 2rem 0;
    }
    
    .cta-card {
        min-height: 300px;
        border-radius: 15px;
    }
    
    .cta-content {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .arc-1 { width: 50px; height: 50px; }
    .arc-2 { width: 70px; height: 70px; }
    .arc-3 { width: 90px; height: 90px; }
    .arc-4 { width: 110px; height: 110px; }
    .arc-5 { width: 130px; height: 130px; }
}

/* Footer */
.footer-section {
    background: var(--dark-brown) !important;
    position: relative;
    z-index: 2;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    pointer-events: none;
    z-index: 1;
}

.footer-brand h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.social-links .btn {
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-3px);
    background: var(--warm-yellow) !important;
    color: var(--dark-brown) !important;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Ensure footer links are clickable */
.footer-section .hover-link {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

.footer-section .social-links .btn {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

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

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

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

/* Enhanced Interactive Elements */
.interactive-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.interactive-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-button::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;
}

.interactive-button:hover::before {
    left: 100%;
}

.interactive-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-soft);
}

.shadow-custom-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-custom-strong {
    box-shadow: var(--shadow-strong);
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Responsive */
    .hero-content-new {
        height: auto;
        padding: 2rem 1rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-demo {
        height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-text {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 2rem auto;
    }
    
    .app-interface {
        padding: 18px;
        height: 100%;
        overflow: hidden;
    }
    
    .feature-card-app {
        padding: 18px;
        margin-bottom: 12px;
        height: auto;
        overflow: hidden;
    }
    
    .feature-card-app h4 {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .feature-card-app p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        max-height: 2.38rem; /* 2 lines * 1.4 line-height * 0.85rem */
    }
    
    .floating-card {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .stat-number-hero {
        font-size: 1.5rem;
    }
    
    .stat-label-hero {
        font-size: 0.8rem;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    /* Testimonials Responsive */
    .testimonials-scroll-container {
        margin: 1.5rem 0;
    }
    
    .testimonials-row {
        margin-bottom: 1.5rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
        animation-duration: 25s;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-width: 300px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Hero Section Mobile */
    .hero-content-new {
        height: auto;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .hero-demo {
        height: auto;
        padding: 1.5rem 1rem;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-text {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        margin: 1rem auto;
    }
    
    .app-interface {
        padding: 15px;
        height: 100%;
        overflow: hidden;
    }
    
    .feature-card-app {
        padding: 15px;
        margin-bottom: 10px;
        height: auto;
        overflow: hidden;
    }
    
    .feature-card-app h4 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .feature-card-app p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        max-height: 2.08rem; /* 2 lines * 1.3 line-height * 0.8rem */
    }
    
    .feature-icon-app {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .floating-card i {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-hero-primary {
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-badge {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Enhanced mobile navbar */
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .navbar .btn-outline-primary,
    .navbar .btn-gradient {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    /* Mobile trust indicators */
    .stat-item-hero {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number-hero {
        font-size: 1.3rem;
    }
    
    .stat-label-hero {
        font-size: 0.75rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-scroll-container {
        margin: 1rem 0;
    }
    
    .testimonials-row {
        margin-bottom: 1rem;
    }
    
    .testimonials-track {
        gap: 1rem;
        animation-duration: 20s;
    }
    
    .testimonial-card {
        padding: 1.25rem;
        min-width: 280px;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        gap: 0.75rem;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 1;
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

/* Print Styles */
@media print {
    .navbar,
    .floating-elements,
    .carousel-controls {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        page-break-inside: avoid;
    }
}

/* Enhanced Recent Resolved Issues Section Styles */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Enhanced Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
}

.footer-link {
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 8px;
}

.footer-link:hover {
    color: #ffc107 !important;
    transform: translateX(8px);
    background-color: rgba(255, 193, 7, 0.1);
    padding-left: 12px;
}

.social-btn {
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background-color: #ffc107 !important;
    color: #1a1a1a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Animation for section headers */
.section-header .badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced card animations */
.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for enhanced sections */
@media (max-width: 768px) {
    .footer-link:hover {
        transform: translateX(4px);
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .hover-lift:hover {
        transform: translateY(-4px);
    }
}