/* Custom CSS for Harigert Enterprise Limited */

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d3748;
    --accent-color: #4a90e2;
    --text-light: #ffffff;
    --text-dark: #333333;
    --grey-light: #f5f5f5;
    --grey-medium: #9ca3af;
    --grey-dark: #4b5563;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Top Bar */
.topbar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar span {
    margin-right: 20px;
    font-size: 0.85rem;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
}

/* Logo Styling */
.logo {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: logoSpin 20s linear infinite;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

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



/* Marquee Styling */
.marquee-container {
    background: linear-gradient(90deg, #1a1a1a, #2d3748, #1a1a1a);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    border-top: 2px solid #4a90e2;
    border-bottom: 2px solid #4a90e2;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding: 0 20px;
}

.marquee-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--grey-dark));
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    position: relative;
    margin-left: 30px;
}

.navbar-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.navbar-nav a:hover {
    color: var(--grey-light);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--text-dark);
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background-color: var(--grey-dark);
    color: var(--text-light);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
    transition: all 0.5s ease;
}

.slide.active img {
    filter: brightness(1.0) contrast(1.15) saturate(1.15);
    transform: scale(1.02);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slideshow Controls */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Slideshow Dots */
.slideshow-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.slideshow-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slideshow-dot.active, .slideshow-dot:hover {
    background-color: var(--accent-color);
}

/* CTA Button */
.slideshow-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 10;
}

.slideshow-cta:hover {
    background-color: var(--grey-dark);
    color: var(--text-light);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Main Content */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 60px;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.service-card {
    background-color: var(--grey-dark);
    color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    margin: 0;
}

.service-card p {
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.6;
}

/* Resources List */
.resources-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.resources-list li {
    border-bottom: 1px solid #e9ecef;
}

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

.resources-list a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.resources-list a:hover {
    background-color: var(--grey-dark);
    color: var(--text-light);
}

/* Company Overview */
.company-overview {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.company-overview p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tagline {
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
    color: var(--primary-color);
}

/* Contact Form */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

#contact-form textarea {
    height: 120px;
    resize: vertical;
}

#contact-form button {
    width: 100%;
    background-color: var(--grey-dark);
    color: var(--text-light);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact-form button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    margin-top: 60px;
}

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

.footer-info h5 {
    color: var(--grey-light);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer-copyright {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        padding: 10px 20px;
    }
    
    .navbar-nav {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar-nav li {
        margin: 5px 15px;
    }
    
    .slideshow-container {
        height: 400px;
        border-radius: 10px;
    }
    
    .slide img {
        filter: brightness(0.9) contrast(1.1) saturate(1.1);
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slideshow-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
        margin-top: 20px;
    }
    
    .topbar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .topbar span {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .slideshow-container {
        height: 300px;
        border-radius: 8px;
    }
    
    .slide img {
        filter: brightness(0.9) contrast(1.1) saturate(1.1);
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slideshow-cta {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .company-overview,
    #contact-form {
        padding: 20px;
    }
}

/* Animation Classes */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Focus States */
button:focus,
input:focus,
textarea:focus {
    box-shadow: 0 0 0 0.2rem rgba(10, 35, 66, 0.25);
}

/* Print Styles */
@media print {
    .slideshow-container,
    .navbar,
    .topbar {
        display: none;
    }
    
    .service-card {
        break-inside: avoid;
    }
} 

/* WhatsApp Chat Widget - Small Corner Version */
.whatsapp-widget-small {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.whatsapp-widget-small:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transform: scale(1.1);
}

.whatsapp-icon-small {
    width: 25px;
    height: 25px;
    display: block;
}

@media (max-width: 700px) {
    .whatsapp-widget-small {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-icon-small {
        width: 22px;
        height: 22px;
    }
}

/* FastBot Chat Widget */
.fastbot-widget {
    position: fixed;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    width: 280px;
    height: 400px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 10000;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.fastbot-widget.active {
    display: flex;
}

.fastbot-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 15px 15px 0 0;
}

.fastbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fastbot-info {
    flex: 1;
}

.fastbot-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.status {
    font-size: 12px;
    opacity: 0.8;
    color: #4ade80;
}

.fastbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.fastbot-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fastbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: white;
    padding: 12px 15px;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bot-message .message-content {
    background: var(--primary-color);
    color: white;
    border-radius: 18px 18px 18px 5px;
}

.user-message .message-content {
    background: var(--accent-color);
    color: white;
    border-radius: 18px 18px 5px 18px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    align-self: flex-end;
}

.user-message .message-time {
    align-self: flex-start;
}

.fastbot-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.fastbot-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.fastbot-input input:focus {
    border-color: var(--accent-color);
}

.fastbot-input button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fastbot-input button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.fastbot-input button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* FastBot Toggle Button */
.fastbot-toggle {
    position: fixed;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    font-weight: 600;
    font-size: 12px;
    min-width: auto;
}

.fastbot-toggle:hover {
    background: var(--secondary-color);
    transform: translateY(50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fastbot-toggle svg {
    width: 16px;
    height: 16px;
}

.fastbot-toggle-text {
    display: inline;
    font-size: 11px;
}

/* Responsive Design for FastBot */
@media (max-width: 768px) {
    .fastbot-widget {
        width: calc(100vw - 40px);
        height: 50vh;
        bottom: 50%;
        right: 20px;
        left: 20px;
        transform: translateY(50%);
    }
    
    .fastbot-toggle {
        bottom: 50%;
        right: 15px;
        padding: 10px 14px;
        transform: translateY(50%);
    }
    
    .fastbot-toggle-text {
        display: none;
    }
    
    .fastbot-toggle svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .fastbot-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .fastbot-toggle {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }
}

/* Zambian Mobile Money Payment System */
.mobile-payment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    backdrop-filter: blur(5px);
}

.mobile-payment-popup.active {
    display: flex;
}

.mobile-payment-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

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

.mobile-payment-header {
    background: linear-gradient(135deg, #e60000 0%, #ff3333 100%);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: background 0.3s ease;
}

/* MTN Mobile Money Header */
.mobile-payment-header.mtn {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
}

/* Airtel Money Header */
.mobile-payment-header.airtel {
    background: linear-gradient(135deg, #e60000 0%, #ff3333 100%);
}

/* Zamtel Kwacha Header */
.mobile-payment-header.zamtel {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

/* Bank Transfer Header */
.mobile-payment-header.bank {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.payment-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.payment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.payment-icon-img[src*="data:image"] {
    background: #e60000;
    padding: 8px;
}

.mobile-payment-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    flex: 1;
}

.payment-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.payment-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-payment-body {
    padding: 25px;
}

.payment-info {
    margin-bottom: 25px;
}

.recipient-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #e60000;
}

.recipient-info h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.recipient-name {
    font-weight: bold;
    color: #e60000;
    margin: 5px 0;
    font-size: 18px;
}

.recipient-number {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 5px 0;
    font-family: 'Courier New', monospace;
}

.amount-input {
    margin-bottom: 20px;
}

.amount-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.amount-input input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: border-color 0.3s ease;
}

.amount-input input:focus {
    outline: none;
    border-color: #e60000;
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
}

.payment-methods {
    margin-bottom: 25px;
}

.payment-methods h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.method-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.method-option {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.method-option:hover {
    border-color: #e60000;
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.method-option input[type="radio"] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #e60000;
    z-index: 2;
}

.method-option input[type="radio"]:checked + .method-icon {
    transform: scale(1.1);
}

.method-icon {
    font-size: 32px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.provider-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
    display: block;
    filter: grayscale(20%);
    background: #f8f9fa;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid #e9ecef;
}

.provider-logo[src*="data:image"] {
    background: transparent;
    border: none;
    padding: 0;
}

.method-option input[type="radio"]:checked + .provider-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.method-option:hover .provider-logo {
    filter: grayscale(0%);
}

.method-text {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
}

/* Provider-specific styling */
.method-option[data-provider="mtn"] {
    border-color: #ffc107;
}

.method-option[data-provider="mtn"]:hover {
    border-color: #ff9800;
    background: #fff8e1;
}

.method-option[data-provider="mtn"] input[type="radio"] {
    accent-color: #ffc107;
}

.method-option[data-provider="airtel"] {
    border-color: #e60000;
}

.method-option[data-provider="airtel"]:hover {
    border-color: #d32f2f;
    background: #fff5f5;
}

.method-option[data-provider="airtel"] input[type="radio"] {
    accent-color: #e60000;
}

.method-option[data-provider="zamtel"] {
    border-color: #4caf50;
}

.method-option[data-provider="zamtel"]:hover {
    border-color: #388e3c;
    background: #e8f5e8;
}

.method-option[data-provider="zamtel"] input[type="radio"] {
    accent-color: #4caf50;
}

.method-option[data-provider="bank"] {
    border-color: #4caf50;
}

.method-option[data-provider="bank"]:hover {
    border-color: #388e3c;
    background: #e8f5e8;
}

.method-option[data-provider="bank"] input[type="radio"] {
    accent-color: #4caf50;
}

.payment-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.pay-now-btn {
    flex: 1;
    background: linear-gradient(135deg, #e60000 0%, #ff3333 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pay-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}

.cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.payment-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.payment-instructions h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.payment-instructions strong {
    color: #e60000;
    font-weight: bold;
}

/* Mobile Money Payment Button */
.mobile-payment-btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    font-weight: 600;
    font-size: 12px;
}

.mobile-payment-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

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

.payment-text {
    font-size: 11px;
}

/* Responsive Design for Mobile Money Payment */
@media (max-width: 768px) {
    .mobile-payment-content {
        width: 95%;
        margin: 20px;
    }
    
    .mobile-payment-btn {
        left: 15px;
        padding: 10px 14px;
    }
    
    .payment-text {
        display: none;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .method-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .method-option {
        min-width: auto;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px;
    }
    
    .method-icon {
        font-size: 24px;
        margin-bottom: 0;
        margin-right: 12px;
    }
    
    .provider-logo {
        width: 40px;
        height: 30px;
        margin-bottom: 0;
        margin-right: 12px;
        padding: 2px;
    }
    
    .provider-logo[src*="data:image"] {
        padding: 0;
    }
    
    .method-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-payment-content {
        width: 98%;
        margin: 10px;
    }
    
    .mobile-payment-btn {
        left: 10px;
        padding: 8px 12px;
    }
    
    .mobile-payment-header {
        padding: 15px;
    }
    
    .mobile-payment-body {
        padding: 20px;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: var(--text-light);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--text-light);
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-item p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.whatsapp-btn, .facebook-btn, .email-btn, .phone-btn, .website-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.facebook-btn {
    background: #1877F2;
    color: white;
}

.facebook-btn:hover {
    background: #0D6EFD;
    transform: scale(1.05);
}

.email-btn {
    background: var(--accent-color);
    color: white;
}

.email-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.phone-btn {
    background: #27AE60;
    color: white;
}

.phone-btn:hover {
    background: #229954;
    transform: scale(1.05);
}

.website-btn {
    background: #9B59B6;
    color: white;
}

.website-btn:hover {
    background: #8E44AD;
    transform: scale(1.05);
}

.whatsapp-icon, .facebook-icon, .email-icon, .phone-icon, .website-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 25px;
    }
}