/* Modern CSS with excellent UI/UX and fast loading */

/* CSS Custom Properties */
:root {
    --primary-color: #1B5E20;      /* Deep Forest Green */
    --secondary-color: #004d40;    /* Deep Teal */
    --accent-color: #388E3C;       /* Medium Green */
    --accent-secondary: #66BB6A;   /* Sage Green */
    --accent-warm: #AEEA00;        /* Lime Highlight */
    --highlight-color: #C6FF00;    /* Bright Lime */
    --success-color: #2E7D32;      /* Success Green */
    --warning-color: #f97316;      /* Warning Orange */
    --danger-color: #ef4444;       /* Danger Red */
    --text-primary: #1B5E20;
    --text-secondary: #37474F;
    --text-light: #607D8B;
    --bg-light: #E8F5E9;           /* Sage/Mint */
    --bg-white: #ffffff;
    --bg-dark: #004d40;
    --shadow-sm: 0 2px 10px rgba(0, 77, 64, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 77, 64, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 77, 64, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 77, 64, 0.25);
    --shadow-glow: 0 0 30px rgba(174, 234, 0, 0.3);
    --border-radius: 20px;
    --border-radius-lg: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-white);
    scroll-behavior: smooth;
}

/* Ensure main content doesn't hide behind fixed navbar */
main {
    margin-top: 80px;
}

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

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 77, 64, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-link,
.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-image {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-image-footer {
    height: 56px;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.nav-link:hover {
    background: rgba(27, 94, 32, 0.1);
    color: var(--accent-color);
}

/* Active Navigation Link Styles */
.nav-link.active {
    background: rgba(27, 94, 32, 0.15);
    color: var(--accent-color);
    font-weight: 700;
}

.nav-link.active::after {
    width: 80%;
}

/* Hero Section - Completely Redesigned */
.hero {
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(135deg, #004d40 0%, #1B5E20 25%, #388E3C 50%, #81C784 75%, #E8F5E9 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    box-sizing: border-box;
}

/* Animated Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Floating Phones */
.floating-phone {
    position: absolute;
    font-size: 2rem;
    animation: floatPhone 8s ease-in-out infinite;
    opacity: 0.25;
    filter: brightness(1.2);
}

.phone-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.phone-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.phone-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Location Pulses */
.location-pulse {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: locationPulse 3s ease-out infinite;
}

.pulse-1 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 60%;
    animation-delay: 0s;
}

.pulse-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.pulse-3 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

/* Floating Hearts */
.heart-float {
    position: absolute;
    font-size: 1.5rem;
    animation: heartFloat 6s ease-in-out infinite;
    opacity: 0.3;
    filter: brightness(1.3);
}

.heart-1 {
    top: 20%;
    left: 70%;
    animation-delay: 0s;
}

.heart-2 {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.heart-3 {
    bottom: 15%;
    right: 30%;
    animation-delay: 4s;
}

/* Safety Shields */
.safety-shield {
    position: absolute;
    font-size: 2rem;
    animation: shieldFloat 7s ease-in-out infinite;
    opacity: 0.25;
    filter: brightness(1.2);
}

.shield-1 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
}

.shield-2 {
    bottom: 25%;
    right: 5%;
    animation-delay: 3s;
}

/* GPS Signals */
.gps-signal {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: gpsSignal 4s ease-in-out infinite;
}

.signal-1 {
    top: 50%;
    left: 80%;
    animation-delay: 0s;
}

.signal-2 {
    top: 80%;
    left: 50%;
    animation-delay: 1.5s;
}

.signal-3 {
    top: 10%;
    right: 10%;
    animation-delay: 3s;
}

/* Main Hero Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
}

/* Left Side - Content */
.hero-left {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff, #E8F5E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #AEEA00, #C6FF00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-3 {
    display: block;
    background: linear-gradient(135deg, #66BB6A, #AEEA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1B5E20, #388E3C);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(27, 94, 32, 0.5);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #AEEA00;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Right Side - Phone Mockup */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #004d40, #1B5E20);
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid #004d40;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #004d40;
    border-radius: 22px 22px 0 0;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #AEEA00;
}

.app-status {
    font-size: 0.8rem;
    color: #2E7D32;
}

/* Location Display */
.location-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.location-icon {
    font-size: 1.5rem;
    color: #AEEA00;
}

.location-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.location-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Safety Status */
.safety-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.status-item.safe {
    background: rgba(46, 125, 50, 0.2);
    color: #2E7D32;
}

.status-item.active {
    background: rgba(27, 94, 32, 0.2);
    color: #AEEA00;
}

/* Family Members */
.family-members {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member.active {
    background: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.3);
}

.member-avatar {
    font-size: 1.5rem;
}

.member-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.member-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.member-status {
    margin-left: auto;
    font-size: 1rem;
}

/* Floating Elements Around Phone */
.floating-element {
    position: absolute;
    font-size: 1.5rem;
    animation: floatElement 6s ease-in-out infinite;
}

.heart-bubble {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.shield-bubble {
    top: -20px;
    right: -20px;
    animation-delay: 1.5s;
}

.location-bubble {
    bottom: -20px;
    left: -20px;
    animation-delay: 3s;
}

.family-bubble {
    bottom: -20px;
    right: -20px;
    animation-delay: 4.5s;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}

/* Animations */
@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes locationPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

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

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

@keyframes gpsSignal {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        height: auto;
        min-height: calc(100vh - 80px);
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-container {
        height: auto;
        min-height: calc(100vh - 80px);
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-screen {
        padding: 1rem;
    }
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-primary);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: none;
}

.cta-button:hover {
    background: var(--text-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.secondary-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-secondary);
}

.secondary-btn:hover {
    background: var(--text-secondary);
    color: var(--bg-white);
}

/* Old hero shapes removed */

/* Old shape class removed */

/* All old shape classes removed */

/* Old float animation removed */

/* All old keyframe animations removed */

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.bg-light {
    background: var(--bg-light);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.bg-gradient h2 {
    background: linear-gradient(135deg, #ffffff, #E8F5E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient p {
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 77, 64, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary), var(--accent-warm));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* How It Works Section */
.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-details span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.pricing-btn:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

.pricing-btn.featured {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.author-avatar {
    font-size: 2.5rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
    font-size: 1.2rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.about-visual {
    display: flex;
    justify-content: center;
}

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

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

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(27, 94, 32, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Page Header and Content */
.page-header {
    background: var(--bg-light);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    margin-top: 80px; /* Add top margin to account for fixed navbar */
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(102, 187, 106, 0.05)),
        radial-gradient(circle at 20% 80%, rgba(27, 94, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 187, 106, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out;
}

.page-header .breadcrumb {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-light);
    animation: fadeInUp 0.6s ease-out;
}

.page-excerpt {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.page-excerpt {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.page-header .breadcrumb a:hover,
.page-header .breadcrumb a:focus {
    color: var(--accent-secondary);
    text-decoration: underline;
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.page-header .breadcrumb span {
    color: var(--text-secondary);
    font-weight: 600;
}

.page-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    background: var(--bg-white);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .content-body {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .page-header .breadcrumb {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Help Center Styles - Page Specific */
.help-center .quick-help-section {
    margin-bottom: 4rem;
}

.help-center .help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-center .help-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.help-center .help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.help-center .help-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-center .help-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-center .help-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.help-center .help-card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.help-center .help-card-link:hover {
    color: var(--accent-secondary);
}

/* Help Center FAQ Styles - Page Specific */
.help-center .faq-section {
    margin-bottom: 4rem;
}

.help-center .faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.help-center .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: var(--transition);
}

.help-center .faq-question:hover {
    background: #C8E6C9;
}

.help-center .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.help-center .faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: var(--transition);
}

.help-center .faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    background: var(--bg-white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.help-center .faq-answer.active {
    display: block;
    max-height: 1000px;
}

.help-center .faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Help Center Contact Support Styles - Page Specific */
.help-center .contact-support {
    margin-bottom: 4rem;
}

.help-center .support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-center .support-method {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.help-center .support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-center .support-method h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.help-center .support-method p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.help-center .support-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Help Center Emergency Contact Styles - Page Specific */
.help-center .emergency-contact {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid var(--danger-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.help-center .emergency-contact h3 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.help-center .emergency-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--danger-color);
    margin: 1rem 0;
}

.help-center .emergency-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Help Center Additional Resources Styles - Page Specific */
.help-center .additional-resources {
    margin-bottom: 2rem;
}

.help-center .resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.help-center .resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.help-center .resource-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--accent-color);
}

.help-center .resource-icon {
    font-size: 1.5rem;
}

/* Help Center Setup Guide Styles - Page Specific */
.help-center .setup-guide {
    margin-bottom: 4rem;
}

.help-center .setup-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.help-center .step-number {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.help-center .step-content h3 {
        color: var(--text-primary);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

.help-center .step-content p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
    }

.help-center .step-details {
        background: var(--bg-light);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        border-left: 4px solid var(--accent-color);
    }

.help-center .step-details p {
        margin-bottom: 1rem;
    }

.help-center .step-details ul {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

.help-center .step-details li {
        margin-bottom: 0.5rem;
        color: var(--text-secondary);
    }

/* Help Center Safety Features Styles - Page Specific */
.help-center .safety-features {
    margin-bottom: 4rem;
}

.help-center .feature-card {
    display: flex;
    gap: 2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: var(--transition);
}

.help-center .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.help-center .feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.help-center .feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.help-center .feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.help-center .feature-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.help-center .feature-details p {
    margin-bottom: 1rem;
}

.help-center .feature-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.help-center .feature-details li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Help Center Troubleshooting Styles - Page Specific */
.help-center .troubleshooting {
    margin-bottom: 4rem;
}

.help-center .trouble-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.help-center .trouble-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.help-center .trouble-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.help-center .trouble-item ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.help-center .trouble-item li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Responsive Help Center - Page Specific */
@media (max-width: 768px) {
    .help-center .help-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-center .support-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-center .help-card,
    .help-center .support-method {
        padding: 1.5rem;
    }
    
    .help-center .resource-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .help-center .emergency-contact {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .help-center .emergency-number {
        font-size: 1.3rem;
    }
    
    .help-center .setup-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .help-center .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .help-center .feature-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .help-center .feature-icon {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .help-center .trouble-item {
        padding: 1.5rem;
    }
    
    .help-center .step-details,
    .help-center .feature-details {
        padding: 1rem;
    }
}

/* Safety Guides Styles - Page Specific */
.safety-guides .safety-nav {
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.safety-guides .nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.safety-guides .nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 2px solid transparent;
}

.safety-guides .nav-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.safety-guides .nav-icon {
    font-size: 2.5rem;
}

.safety-guides .nav-card span:last-child {
    font-weight: 600;
    text-align: center;
}

/* Safety Section Styles */
.safety-guides .safety-section {
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.safety-guides .safety-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.safety-guides .safety-section > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Safety Guide Styles */
.safety-guides .safety-guide {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.safety-guides .safety-guide:last-child {
    margin-bottom: 0;
}

.safety-guides .safety-guide h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safety-guides .guide-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.safety-guides .guide-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 1.5rem;
}

.safety-guides .guide-content li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.safety-guides .guide-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Safety Tips Summary */
.safety-guides .safety-tips-summary {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
}

.safety-guides .safety-tips-summary h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    border: none;
}

.safety-guides .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.safety-guides .tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.safety-guides .tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.safety-guides .tip-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.safety-guides .tip-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Safety Guides */
@media (max-width: 768px) {
    .safety-guides .safety-nav {
        padding: 1.5rem;
    }
    
    .safety-guides .nav-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .safety-guides .safety-section {
        padding: 1.5rem;
    }
    
    .safety-guides .safety-section h2 {
        font-size: 1.6rem;
    }
    
    .safety-guides .safety-guide {
        padding: 1.5rem;
    }
    
    .safety-guides .safety-tips-summary {
        padding: 2rem 1.5rem;
    }
    
    .safety-guides .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-guides .nav-card {
        padding: 1rem;
    }
    
    .safety-guides .nav-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .safety-guides .nav-cards {
        grid-template-columns: 1fr;
    }
    
    .safety-guides .safety-section h2 {
        font-size: 1.4rem;
    }
    
    .safety-guides .safety-guide h3 {
        font-size: 1.2rem;
    }
    
    .safety-guides .safety-tips-summary h2 {
        font-size: 1.6rem;
    }
}

/* Safety Guides Additional Resources Styles - Page Specific */
.safety-guides .additional-resources {
    margin-bottom: 2rem;
}

.safety-guides .resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.safety-guides .resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.safety-guides .resource-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--accent-color);
}

.safety-guides .resource-icon {
    font-size: 1.5rem;
}

/* Partners Page Styles - Page Specific */
.partners-page .partnership-overview {
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
    text-align: center;
}

.partners-page .partnership-overview h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.partners-page .partnership-overview > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-page .partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partners-page .benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: var(--transition);
}

.partners-page .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partners-page .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.partners-page .benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partners-page .benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partners Section Styles */
.partners-page .partners-section {
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.partners-page .partners-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.partners-page .partners-section > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.partners-page .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.partners-page .partner-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: var(--transition);
}

.partners-page .partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partners-page .partner-logo {
    flex-shrink: 0;
}

.partners-page .partner-icon {
    font-size: 3rem;
    display: block;
}

.partners-page .partner-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.partners-page .partner-type {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-page .partner-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partners-page .partnership-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.partners-page .partnership-type {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partners-page .partnership-duration {
    background: var(--bg-white);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

/* Become a Partner Section */
.partners-page .become-partner {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
}

.partners-page .become-partner h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: white;
}

.partners-page .become-partner > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-page .partnership-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partners-page .partnership-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-page .partnership-option h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partners-page .partnership-option p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partners-page .partnership-option ul {
    margin: 0;
    padding-left: 1.5rem;
}

.partners-page .partnership-option li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Contact Partnership Section */
.partners-page .contact-partnership {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-page .contact-partnership h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.partners-page .contact-partnership > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.partners-page .partnership-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.partners-page .contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.partners-page .contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.partners-page .contact-method h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.partners-page .contact-method p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Success Stories Section */
.partners-page .success-stories {
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.partners-page .success-stories h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.partners-page .success-stories > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.partners-page .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partners-page .story-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: var(--transition);
}

.partners-page .story-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partners-page .story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.partners-page .story-icon {
    font-size: 2rem;
}

.partners-page .story-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.2rem;
}

.partners-page .story-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partners-page .story-metrics {
    text-align: center;
}

.partners-page .metric {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.partners-page .metric-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Partners Page */
@media (max-width: 768px) {
    .partners-page .partnership-overview {
        padding: 2rem 1.5rem;
    }
    
    .partners-page .partnership-overview h2 {
        font-size: 1.8rem;
    }
    
    .partners-page .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-page .partners-section {
        padding: 1.5rem;
    }
    
    .partners-page .partners-section h2 {
        font-size: 1.6rem;
    }
    
    .partners-page .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-page .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .partners-page .partnership-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-page .partnership-contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-page .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-page .become-partner {
        padding: 2rem 1.5rem;
    }
    
    .partners-page .become-partner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .partners-page .partnership-overview h2 {
        font-size: 1.5rem;
    }
    
    .partners-page .partners-section h2 {
        font-size: 1.4rem;
    }
    
    .partners-page .become-partner h2 {
        font-size: 1.5rem;
    }
    
    .partners-page .partner-card {
        padding: 1rem;
    }
    
    .partners-page .partnership-option {
        padding: 1.5rem;
    }
}

.content-body h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.8rem;
    position: relative;
}

.content-body h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-secondary);
    border-radius: 2px;
}

.content-body h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-body p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: justify;
    hyphens: auto;
}

.content-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.content-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style: none;
}

.content-body li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.content-body li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
    top: 0.2rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--bg-light), #C8E6C9);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.bangladesh-section {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border: 2px solid #1B5E20;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bangladesh-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.bangladesh-section::before {
    content: "🇧🇩";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    border: 2px solid #1B5E20;
}

.bangladesh-section h2 {
    color: #1B5E20;
    border-bottom: 2px solid #1B5E20;
    padding-bottom: 0.5rem;
    margin-top: 0;
}

.bangladesh-section ul {
    margin-top: 1rem;
}

.bangladesh-section li {
    color: #333;
    font-weight: 500;
}

/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.insight-image {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    padding: 3rem;
    text-align: center;
}

.insight-icon {
    font-size: 4rem;
}

.insight-content {
    padding: 2rem;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.insight-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.insight-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.insight-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.insight-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.insight-content h3 a:hover {
    text-decoration: underline;
}

.insight-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.insight-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.read-time, .views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.insights-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--shadow-lg);
}

.insights-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.insights-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Blog Section (Legacy) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    font-size: 4rem;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    color: var(--accent-color);
    font-weight: 600;
}

/* Download Section */
.download-container {
    text-align: center;
}

.download-content h2 {
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    min-width: 200px;
    justify-content: center;
}

.download-btn.google-play {
    background: linear-gradient(135deg, var(--success-color), #1B5E20);
    color: white;
}

.download-btn.app-store {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.download-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e1e5e9;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: var(--bg-white);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary), var(--accent-warm));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.form-alert {
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.form-alert-success {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-left: 4px solid var(--success-color);
}

.form-alert-success h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.form-alert-error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 4px solid var(--danger-color);
}

.form-alert-error p,
.form-alert-error li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-alert-error ul {
    margin: 0.5rem 0 0 1.25rem;
}

.account-deletion-form {
    max-width: 640px;
    margin: 2rem auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.submit-btn.loading .btn-loader {
    display: block;
}

.submit-btn.loading span {
    opacity: 0;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .feature-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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

/* Animation utilities */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

/* Performance optimizations */
.hero,
.navbar,
.footer {
    will-change: transform;
}

.cta-button,
.submit-btn {
    will-change: transform;
}

/* Print styles */
@media print {
    .navbar,
    .cta-button,
    .submit-btn,
    .modal {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* FAQ Styles */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-toggle {
    background: var(--accent-color);
    transform: rotate(180deg);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 1rem 0 !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: var(--border-radius) !important;
        transition: all 0.3s ease !important;
        color: var(--text-primary) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-color);
        color: white !important;
        transform: translateX(10px);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .navbar {
        padding: 1rem 2rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-logo .logo-image {
        height: 36px;
    }
    
    /* Adjust main content for fixed navbar */
    main {
        margin-top: 80px;
    }
    
    /* Mobile FAQ adjustments */
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Mobile menu item count optimization */
    .nav-menu li:first-child {
        margin-top: 0;
    }
    
    .nav-menu li:last-child {
        margin-bottom: 0;
    }
    
    /* Ensure menu fits on smaller screens */
    @media (max-height: 600px) {
        .nav-menu li {
            margin: 0.25rem 0;
        }
        
        .nav-link {
            padding: 0.5rem 1rem !important;
            font-size: 0.9rem !important;
        }
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1.25rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Large Screen Navigation Enhancements */
@media (min-width: 1025px) {
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-link {
        position: relative;
        transition: all 0.3s ease;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--accent-color);
        border-radius: 2px;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::before {
        width: 20px;
    }
    
    .nav-link.active::before {
        width: 20px;
        background: var(--accent-color);
    }
}

/* Extra Large Screen Optimization */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
    }
}

/* Smooth transitions for all interactive elements */
.nav-link,
.faq-question,
.faq-toggle,
.hamburger span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading state for form submission */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0 3rem;
    margin-top: 80px;
}

.article-header .breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-header .breadcrumb a:hover {
    color: white;
}

.article-header .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category,
.article-date,
.article-read-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.article-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.article-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.article-content {
    padding: 4rem 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.article-body h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-body p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 77, 64, 0.1);
}

.article-tags {
    margin-bottom: 2rem;
}

.article-tags .tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.25rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.article-share {
    margin-bottom: 2rem;
}

.article-share h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.youtube { background: #ff0000; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.related-articles h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-3px);
}

.related-icon {
    font-size: 2rem;
}

.related-content h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.related-category {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Standard Banner Styles */
.standard-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-top: 80px;
    text-align: center;
}

.standard-banner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.standard-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Insights Hero Section */
.insights-hero {
    height: 33.33vh !important;
    min-height: 33.33vh !important;
    max-height: 33.33vh !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding-top: 0 !important;
}

.insights-hero::before {
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.insights-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 1000px;
    padding: 0 2rem;
}

.insights-hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #E8F5E9, #C8E6C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-hero p {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    font-weight: 300;
    color: #E8F5E9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-warm);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for insights hero */
@media (max-width: 768px) {
    .insights-hero {
        height: 33.33vh !important;
        min-height: 33.33vh !important;
        max-height: 33.33vh !important;
        padding: 1.5rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Safety Objects Animation */
.safety-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.safety-object {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: floatObject 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.safety-object.shield {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.safety-object.heart {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.safety-object.star {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.safety-object.lock {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.safety-object.home {
    top: 40%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.safety-object.phone {
    top: 50%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 7s;
}

@keyframes floatObject {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
        opacity: 0.8;
    }
}

/* Hover effects for safety objects */
.safety-object:hover {
    animation-play-state: paused;
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

/* Mobile responsive adjustments for safety objects */
@media (max-width: 768px) {
    .safety-object {
        font-size: 2rem;
    }
    
    .safety-object.shield {
        top: 15%;
        left: 10%;
    }
    
    .safety-object.heart {
        top: 20%;
        right: 15%;
    }
    
    .safety-object.star {
        top: 65%;
        left: 8%;
    }
    
    .safety-object.lock {
        top: 75%;
        right: 10%;
    }
    
    .safety-object.home {
        top: 35%;
        left: 20%;
    }
    
    .safety-object.phone {
        top: 45%;
        right: 20%;
    }
}

/* Share Notification Styles */
.share-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.share-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Enhanced Share Button Hover Effects */
.share-btn {
    position: relative;
    overflow: hidden;
}

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

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

.share-btn:active {
    transform: scale(0.95);
}

/* Mobile responsive for share notifications */
@media (max-width: 768px) {
    .share-notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .share-notification.show {
        transform: translateY(0);
    }
}

/* Call-to-Action Section Styling */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--accent-secondary) 100%);
    margin: 4rem 0;
    padding: 3rem 0;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-section::before {
    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="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-section .cta-btn.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #E8F5E9;
}

.cta-section .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-section .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

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

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

/* CTA Section with Icons */
.cta-section .cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.cta-section .cta-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-section .cta-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.cta-section .cta-feature h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cta-section .cta-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile responsive for CTA section */
@media (max-width: 768px) {
    .cta-section {
        margin: 2rem 0;
        padding: 2rem 0;
        border-radius: var(--border-radius);
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .cta-section .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-section .cta-feature {
        padding: 1rem;
    }
}

