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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 28px;
}

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

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #7c3aed;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width 0.3s ease;
}

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

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

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #7c3aed;
    border-left-color: #7c3aed;
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #8b5cf6;
    color: white;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1f2937;
    border-radius: 35px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    animation: float 3s ease-in-out infinite;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 25px;
    padding: 30px 20px;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    color: white;
}

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

.app-header i {
    font-size: 24px;
}

.balance-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.balance-card p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.balance-card h3 {
    font-size: 28px;
    font-weight: 700;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.action-btn i {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Deposit/Withdraw Section */
.deposit-withdraw {
    padding: 100px 0;
    background: white;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.options-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 40px;
    border-left: 5px solid #8b5cf6;
}

.options-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.options-card h3 i {
    background: #8b5cf6;
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
}

.options-list {
    list-style: none;
}

.options-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4b5563;
    transition: all 0.3s ease;
}

.options-list li:last-child {
    border-bottom: none;
}

.options-list li:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

.options-list li i {
    width: 20px;
    color: #8b5cf6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.how-it-works .section-header h2,
.how-it-works .section-header p {
    color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-content p {
    opacity: 0.9;
    color: #fff;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: #f8fafc;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.download-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn img {
    height: 60px;
    transition: all 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.phones-mockup {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}

.phone-1,
.phone-2 {
    width: 180px;
    height: 360px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.phone-1 {
    transform: rotate(-10deg);
    z-index: 2;
}

.phone-2 {
    transform: rotate(10deg) translateY(20px);
    z-index: 1;
}

.phone-1 .phone-screen,
.phone-2 .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    padding: 20px;
}

.screen-content {
    color: white;
    text-align: center;
}

.screen-content h4 {
    margin-bottom: 30px;
    font-size: 18px;
}

.input-field {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.input-field input {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

.input-field input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-field button {
    width: 100%;
    background: white;
    color: #7c3aed;
    border: none;
    padding: 8px;
    border-radius: 5px;
    font-weight: 600;
}

.balance {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mini-actions {
    display: flex;
    justify-content: space-around;
    font-size: 12px;
}

.mini-actions span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 8px;
    border-radius: 15px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.vision-values {
    padding: 80px 0;
    background: #f8fafc;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.why-different {
    padding: 80px 0;
}

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

.different-item {
    padding: 20px;
}

.different-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.different-item p {
    color: #6b7280;
    line-height: 1.6;
}

.team-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: #8b5cf6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.contact-method p {
    color: #6b7280;
    margin-bottom: 5px;
}

.contact-method span {
    color: #8b5cf6;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
    color: #8b5cf6;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-section ul li a:hover {
    color: #8b5cf6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* USSD Section Styles */
.ussd-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ussd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ussd-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.ussd-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ussd-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ussd-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ussd-step-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.ussd-step-text p {
    color: #6b7280;
    line-height: 1.6;
}

.ussd-step-text strong {
    color: #7c3aed;
    font-weight: 700;
}

.phone-ussd {
    width: 250px;
    height: 400px;
    background: #1f2937;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.phone-screen-ussd {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    padding: 20px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.ussd-display {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ussd-header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00ff00;
}

.ussd-menu {
    flex: 1;
    line-height: 1.8;
}

.ussd-menu p {
    margin: 5px 0;
}

.ussd-footer {
    text-align: center;
    font-size: 10px;
    margin-top: 20px;
    color: #00ff00;
}

/* App Gallery Styles */
.app-gallery {
    padding: 100px 0;
    background: white;
}

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

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

.app-screenshot {
    width: 200px;
    height: 400px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    padding: 20px;
    color: white;
    font-size: 12px;
}

.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.welcome-section {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.welcome-section h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.welcome-section p {
    font-size: 10px;
    opacity: 0.9;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.action-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
    font-size: 10px;
}

.action-item i {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.send-form {
    padding: 10px 0;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    opacity: 0.9;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 11px;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.send-btn, .new-voucher-btn {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 600;
}

.evoucher-section {
    padding: 10px 0;
}

.voucher-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.voucher-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.voucher-card p {
    font-size: 11px;
    margin: 3px 0;
    opacity: 0.9;
}

.transaction-list {
    padding: 10px 0;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.transaction-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.transaction-icon.green {
    background: rgba(34, 197, 94, 0.3);
}

.transaction-icon.red {
    background: rgba(239, 68, 68, 0.3);
}

.transaction-details {
    flex: 1;
    text-align: left;
}

.transaction-details p {
    font-size: 11px;
    margin: 0;
}

.transaction-details small {
    font-size: 9px;
    opacity: 0.7;
}

.transaction-amount {
    font-size: 11px;
    font-weight: 600;
}

.gallery-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.gallery-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-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="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.service-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

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

/* Transfer Animation */
.transfer-animation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-sender,
.phone-receiver {
    width: 150px;
    height: 300px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.phone-sender .phone-screen,
.phone-receiver .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    padding: 20px;
    color: white;
    font-size: 12px;
}

.transfer-ui h4,
.notification-ui h4 {
    margin-bottom: 20px;
    font-size: 14px;
}

.input-field {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.amount {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.send-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.notification-ui {
    text-align: center;
    padding-top: 40px;
}

.notification-ui i {
    font-size: 40px;
    color: #10b981;
    margin-bottom: 15px;
}

.transfer-arrow {
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Service Features */
.service-features {
    padding: 100px 0;
    background: #f8fafc;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-feature .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Bills Showcase */
.bills-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.bill-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bill-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bill-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.bill-icon i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.bill-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.phone-bill-pay {
    width: 200px;
    height: 400px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bill-ui {
    color: white;
    font-size: 14px;
}

.bill-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.bill-item button {
    background: #10b981;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    margin-left: auto;
}

/* Supported Billers */
.supported-billers {
    padding: 100px 0;
    background: white;
}

.billers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.biller-category {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #8b5cf6;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header i {
    background: #8b5cf6;
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

.biller-list {
    list-style: none;
}

.biller-list li {
    padding: 8px 0;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.biller-list li:last-child {
    border-bottom: none;
}

.biller-list li:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

/* Tab System */
.method-tabs,
.process-tabs,
.bundle-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn,
.bundle-tab {
    padding: 12px 24px;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.bundle-tab.active {
    background: #8b5cf6;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active,
.bundle-content.active {
    display: block;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-visual {
    margin-top: 20px;
}

.app-mockup {
    width: 120px;
    height: 200px;
    background: #1f2937;
    border-radius: 15px;
    padding: 10px;
    margin: 0 auto;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 10px;
}

.dashboard {
    text-align: center;
}

.balance {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.action-highlighted {
    background: rgba(255, 255, 255, 0.3);
    padding: 8px;
    border-radius: 5px;
    font-weight: 600;
}

.send-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 5px;
    border-radius: 3px;
    color: white;
    font-size: 9px;
    margin-bottom: 8px;
}

.confirmation {
    text-align: center;
    padding-top: 30px;
}

.confirmation i {
    font-size: 30px;
    color: #10b981;
    margin-bottom: 10px;
}

/* USSD Steps */
.ussd-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ussd-flow,
.ussd-bill-flow,
.ussd-purchase-flow {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.ussd-step,
.ussd-step-large {
    text-align: center;
    max-width: 250px;
}

.ussd-screen,
.ussd-screen-large {
    width: 200px;
    height: 300px;
    background: #000;
    border-radius: 15px;
    padding: 15px;
    margin: 0 auto 15px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.ussd-display {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ussd-header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00ff00;
}

.ussd-menu {
    flex: 1;
    line-height: 1.6;
}

.ussd-menu p {
    margin: 3px 0;
}

.ussd-footer {
    text-align: center;
    font-size: 9px;
    margin-top: 15px;
    color: #00ff00;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 40px;
    border-left: 5px solid #8b5cf6;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
}

.fee-structure {
    margin-bottom: 30px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.fee-row:last-child {
    border-bottom: none;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
}

.pricing-features .feature i {
    color: #10b981;
}

/* eVoucher Specific Styles */
.evoucher-demo {
    display: flex;
    justify-content: center;
}

.voucher-creation {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.phone-voucher {
    width: 150px;
    height: 300px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.voucher-ui {
    color: white;
    font-size: 12px;
    text-align: center;
}

.amount-input {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 700;
}

.create-btn {
    width: 100%;
    background: #10b981;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.arrow-flow {
    font-size: 1.5rem;
    color: white;
}

.voucher-code {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.code-display h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.code {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.atm-withdrawal {
    text-align: center;
}

.atm-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.atm-icon i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.withdrawal-success {
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.withdrawal-success i {
    color: #10b981;
    margin-right: 8px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* eVoucher Process */
.evoucher-process {
    max-width: 1000px;
    margin: 0 auto;
}

.process-visual {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.step-visual {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.step-illustration {
    margin-bottom: 20px;
}

.phone-create {
    width: 150px;
    height: 250px;
    background: #1f2937;
    border-radius: 20px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.create-interface {
    color: white;
    font-size: 12px;
    text-align: center;
}

.amount-selector {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-size: 18px;
    font-weight: 700;
}

.voucher-display {
    display: flex;
    justify-content: center;
}

.voucher-card {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    max-width: 200px;
}

.voucher-card h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.voucher-code-large {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.voucher-details p {
    margin: 5px 0;
    font-size: 12px;
    opacity: 0.9;
}

.atm-interaction {
    display: flex;
    justify-content: center;
}

.atm-screen {
    width: 180px;
    height: 120px;
    background: #1f2937;
    border-radius: 10px;
    padding: 15px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 10px;
}

.atm-interface h4 {
    text-align: center;
    margin-bottom: 10px;
    color: #00ff00;
}

.atm-options p {
    margin: 3px 0;
    line-height: 1.4;
}

.step-description h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.step-description p {
    color: #6b7280;
    line-height: 1.6;
}

/* Voucher Types */
.voucher-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.voucher-type {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.voucher-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.voucher-type.featured {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.type-header i {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.type-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

.type-features {
    margin-bottom: 25px;
}

.type-features ul {
    list-style: none;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #4b5563;
}

.type-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

.type-pricing {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #4b5563;
}

.price-range:last-child {
    font-weight: 600;
    color: #8b5cf6;
}

/* ATM Networks */
.atm-networks {
    max-width: 1000px;
    margin: 0 auto;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.network-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.network-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.network-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.network-card p {
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 5px;
}

.coverage {
    font-size: 0.9rem;
    color: #8b5cf6;
    font-weight: 500;
}

/* Security Features */
.security-features {
    max-width: 800px;
    margin: 0 auto;
}

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

.security-feature {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.security-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.security-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.security-feature p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Airtime & Data Specific Styles */
.airtime-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.network-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.network-logo {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.network-logo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.network-logo.vodacom {
    border-left: 4px solid #e60000;
}

.network-logo.mtn {
    border-left: 4px solid #ffcb05;
}

.network-logo.cellc {
    border-left: 4px solid #0066cc;
}

.network-logo.telkom {
    border-left: 4px solid #00a651;
}

.phone-airtime {
    width: 180px;
    height: 350px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.airtime-ui {
    color: white;
    font-size: 14px;
    text-align: center;
}

.network-select,
.amount-select {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-weight: 600;
}

.buy-btn {
    width: 100%;
    background: #10b981;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* Networks Grid */
.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.network-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vodacom-card {
    border-left: 5px solid #e60000;
}

.mtn-card {
    border-left: 5px solid #ffcb05;
}

.cellc-card {
    border-left: 5px solid #0066cc;
}

.telkom-card {
    border-left: 5px solid #00a651;
}

.network-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.network-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.network-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-type h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.service-type p {
    color: #6b7280;
    font-weight: 500;
}

.service-type ul {
    list-style: none;
    margin-top: 10px;
}

.service-type li {
    padding: 5px 0;
    color: #4b5563;
    font-size: 0.9rem;
}

/* Data Bundles */
.bundles-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bundle-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.bundle-card.popular {
    border: 2px solid #8b5cf6;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.bundle-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.validity {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bundle-option:hover {
    background: #e5e7eb;
    transform: translateX(5px);
}

.data-amount {
    font-weight: 600;
    color: #1f2937;
}

.price {
    font-weight: 700;
    color: #8b5cf6;
    font-size: 1.1rem;
}

/* Purchase Process */
.app-purchase-flow {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.purchase-step {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.mini-phone {
    width: 120px;
    height: 200px;
    background: #1f2937;
    border-radius: 15px;
    padding: 10px;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mini-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 10px;
    padding: 12px;
    color: white;
    font-size: 10px;
}

.purchase-ui h4 {
    margin-bottom: 15px;
    font-size: 12px;
}

.service-options {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.option {
    flex: 1;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 9px;
    text-align: center;
}

.option.selected {
    background: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.network-selection h4 {
    margin-bottom: 15px;
    font-size: 12px;
}

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

.network {
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 10px;
    text-align: center;
}

.network.selected {
    background: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.purchase-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.purchase-details input,
.purchase-details select {
    padding: 6px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 9px;
}

.purchase-details button {
    padding: 8px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

/* Additional App Screenshots */
.bills-list {
    padding: 10px 0;
}

.bill-category {
    margin-bottom: 15px;
}

.bill-category h4 {
    font-size: 11px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.bill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 5px;
    font-size: 10px;
}

.airtime-purchase {
    padding: 10px 0;
}

.network-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.network-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 5px;
    font-size: 10px;
}

.network-option.selected {
    background: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.amount-options {
    display: flex;
    gap: 5px;
}

.amount-btn {
    flex: 1;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 9px;
    text-align: center;
}

.amount-btn.selected {
    background: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.settings-menu {
    padding: 10px 0;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item i:first-child {
    width: 15px;
}

.setting-item i:last-child {
    margin-left: auto;
    opacity: 0.6;
}

.ussd-info-download {
    margin-top: 30px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    text-align: center;
}

.ussd-code {
    background: #7c3aed;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .phones-mockup {
        flex-direction: column;
        align-items: center;
    }

    .phone-1,
    .phone-2 {
        transform: none;
    }

    .ussd-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .app-screenshot {
        width: 180px;
        height: 360px;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .transfer-animation,
    .voucher-creation {
        flex-direction: column;
        gap: 20px;
    }
    
    .arrow-flow {
        transform: rotate(90deg);
    }
    
    .process-visual,
    .app-purchase-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .ussd-flow,
    .ussd-bill-flow,
    .ussd-purchase-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 10px;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card,
    .options-card {
        padding: 30px 20px;
    }
    
    .service-hero-text h1 {
        font-size: 2rem;
    }
    
    .service-stats {
        justify-content: center;
    }
    
    .bundles-grid,
    .networks-grid {
        grid-template-columns: 1fr;
    }
    
    .method-tabs,
    .process-tabs,
    .bundle-tabs {
        flex-direction: column;
        align-items: center;
    }
}
