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

:root {
    --navy-blue: #1B365D;
    --vibrant-orange: #FF6B35;
    --rich-purple: #6B46C1;
    --warm-cream: #F5E6B3;
    --light-cream: #FDF9F0;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E0;
    --gray-500: #A0AEC0;
    --gray-600: #718096;
    --gray-700: #4A5568;
    --gray-800: #2D3748;
    --gray-900: #1A202C;
    --success-green: #10B981;
    --warning-yellow: #F59E0B;
    --danger-red: #EF4444;
    --shadow-light: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 25px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--vibrant-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vibrant-orange);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: var(--vibrant-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: #e55a2b;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--rich-purple) 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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="zigzag" patternUnits="userSpaceOnUse" width="30" height="30"><path d="M0,15 L5,10 L10,15 L15,10 L20,15 L25,10 L30,15" stroke="rgba(255,107,53,0.1)" stroke-width="1" fill="none"/><path d="M0,25 L7,18 L14,25 L21,18 L28,25" stroke="rgba(245,230,179,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23zigzag)"/></svg>');
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--warm-cream);
    font-weight: 600;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--vibrant-orange);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    background: #e55a2b;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat {
    text-align: center;
    min-width: 120px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--warm-cream);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    word-wrap: break-word;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.6s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) scale(1.05);
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: #444;
    border-radius: 4px;
    z-index: 2;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    z-index: 2;
}

.app-screenshot-french {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.status-icons {
    display: flex;
    gap: 5px;
    font-size: 12px;
}

.app-welcome h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.app-welcome p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.categories-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.category-card {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.category-line {
    width: 4px;
    height: 20px;
    border-radius: 2px;
}

.category-card.cleaning .category-line { background: #10b981; }
.category-card.electrical .category-line { background: #f59e0b; }
.category-card.plumbing .category-line { background: #3b82f6; }
.category-card.gardening .category-line { background: #84cc16; }
.category-card.tutoring .category-line { background: #8b5cf6; }
.category-card.medical .category-line { background: #ef4444; }

.featured-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.provider-card-french {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
}

.provider-avatar {
    width: 40px;
    height: 40px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.provider-info-french strong {
    font-size: 14px;
    color: #1f2937;
    display: block;
    margin-bottom: 2px;
}

.provider-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 3px;
}

.provider-meta span {
    font-size: 11px;
    color: #6b7280;
}

.price {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.book-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
    padding-top: 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nav-item.active {
    color: #3b82f6;
}

.nav-item span:first-child {
    font-size: 16px;
}

.nav-item span:last-child {
    font-size: 8px;
    font-weight: 600;
    color: #6b7280;
}

.nav-item.active span:last-child {
    color: #3b82f6;
}

/* Floating badges around the phone */
.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, var(--vibrant-orange), #ff8a50);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
    font-size: 1rem;
}

.badge-1 {
    top: 50px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 200px;
    right: -30px;
    background: linear-gradient(135deg, #10B981, #34D399);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation-delay: 1s;
}

.badge-3 {
    bottom: 100px;
    left: -25px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation-delay: 2s;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    background: linear-gradient(180deg, var(--light-cream) 0%, white 100%);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-logo {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.2rem;
}

.app-location {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.search-bar {
    background: white;
    padding: 15px;
    border-radius: 15px;
    color: var(--gray-500);
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.category {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-700);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-pattern {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--vibrant-orange), transparent);
    opacity: 0.1;
    border-radius: 50%;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-icon {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--vibrant-orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Features */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--vibrant-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

/* Cameroon Section */
.cameroon-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vibrant-orange) 0%, var(--rich-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cameroon-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="african" patternUnits="userSpaceOnUse" width="40" height="40"><polygon points="20,5 25,15 35,15 27,23 30,35 20,28 10,35 13,23 5,15 15,15" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23african)"/></svg>');
}

.cameroon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cameroon-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cameroon-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

.cameroon-feature {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-check {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 700;
}

.cameroon-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-graphic {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.map-cameroon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.map-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.city {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.download-btn {
    display: flex;
    align-items: center;
    background: var(--navy-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.4);
}

.download-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

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

.download-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-store {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-note {
    text-align: center;
    color: var(--gray-600);
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-cream);
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-600);
}

.contact-form {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-orange);
}

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

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

.footer-section h4 {
    color: var(--vibrant-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--vibrant-orange);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    color: var(--gray-500);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--vibrant-orange);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
    }
    
    .floating-badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cameroon-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        transform: perspective(600px) rotateY(-8deg) rotateX(2deg);
    }
    
    .floating-badge {
        padding: 5px 8px;
        font-size: 0.65rem;
    }
    
    .badge-1, .badge-3 {
        left: -15px;
    }
    
    .badge-2 {
        right: -20px;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat {
        min-width: 90px;
        flex: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

/* High-Converting Features CSS */

/* Hero Search Bar */
.hero-search {
    margin: 2rem 0;
    max-width: 600px;
}

.search-container {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.location-selector {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: var(--gray-100);
    border-right: 1px solid var(--gray-200);
    min-width: 120px;
}

.location-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.location-dropdown {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
}

.search-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--gray-500);
    font-style: italic;
}

.search-btn {
    padding: 18px 30px;
    background: var(--vibrant-orange);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #e55a2b;
}

.search-examples {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.example-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.example-tag {
    padding: 6px 12px;
    background: var(--warm-cream);
    color: var(--navy-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.example-tag:hover {
    background: var(--vibrant-orange);
    color: white;
}

/* Trust Badges */
.hero-trust {
    margin: 1.5rem 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid var(--success-green);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--success-green);
    box-shadow: var(--shadow-light);
}

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

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--rich-purple));
    color: white;
}

.testimonial-banner {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-text h3 {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--warning-yellow);
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.testimonial-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-cream);
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Price Transparency */
.price-transparency {
    padding: 4rem 0;
    background: var(--light-cream);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--vibrant-orange);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.price-card h4 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.price-range {
    margin: 1rem 0;
}

.price-from {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vibrant-orange);
    margin-bottom: 0.5rem;
}

.price-avg {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.price-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

.price-guarantee {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--success-green);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

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

/* Service Categories Showcase */
.service-categories {
    padding: 4rem 0;
    background: white;
}

.categories-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--vibrant-orange);
}

.category-card.trending {
    border-color: var(--warning-yellow);
    background: linear-gradient(145deg, #fef3c7, white);
}

.category-card.urgent {
    border-color: var(--danger-red);
    background: linear-gradient(145deg, #fee2e2, white);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 3rem;
}

.category-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--gray-200);
    color: var(--gray-700);
}

.category-badge.emergency {
    background: var(--danger-red);
    color: white;
    animation: pulse 2s infinite;
}

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

.category-card h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.category-desc {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.stat {
    color: var(--gray-700);
    font-weight: 500;
}

.category-cta {
    width: 100%;
    padding: 12px 20px;
    background: var(--navy-blue);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.category-cta:hover {
    background: var(--vibrant-orange);
    transform: scale(1.02);
}

.category-cta.urgent {
    background: var(--danger-red);
    animation: pulse 2s infinite;
}

/* Step CTAs */
.step-cta {
    margin-top: 1rem;
    text-align: center;
}

.mini-cta {
    display: inline-block;
    padding: 8px 16px;
    background: var(--vibrant-orange);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.mini-cta:hover {
    background: var(--navy-blue);
    transform: scale(1.05);
}

/* Urgency CTA */
.urgency-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--danger-red), #dc2626);
    color: white;
}

.urgency-banner {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.urgency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.urgency-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.urgency-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timer-label {
    font-weight: 600;
}

.timer-display {
    display: flex;
    gap: 10px;
}

.timer-unit {
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
}

.urgency-cta-buttons {
    text-align: center;
}

.btn-primary.urgent {
    background: white;
    color: var(--danger-red);
    font-size: 1.2rem;
    padding: 15px 30px;
    animation: pulse 2s infinite;
}

.btn-primary.urgent:hover {
    background: var(--warm-cream);
    transform: scale(1.05);
}

.urgency-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Mobile App Enhancement */
.app-categories .category.popular::after {
    content: "🔥";
    margin-left: 5px;
}

.app-categories .category.urgent::after {
    content: "⚡";
    margin-left: 5px;
}

.app-categories .category.trending::after {
    content: "📈";
    margin-left: 5px;
}

.app-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.service-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--success-green);
    font-weight: 600;
}

.active-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
    }
    
    .location-selector {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        justify-content: center;
    }
    
    .testimonial-content,
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 10px;
    }
    
    .trust-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .categories-carousel {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-banner {
        padding: 1.5rem;
    }
    
    .timer-display {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* WhatsApp Business Floating Button */
.whatsapp-float {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;
    z-index: 99999 !important;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: 50%;
}

.whatsapp-icon svg {
    z-index: 1;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon svg {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-blue);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--navy-blue);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Hero Button */
.btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

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