:root {
    --safaricom-green: #30B54A;
    --safaricom-green-dark: #268A3A;
    --safaricom-green-light: #5FC86F;
    --safaricom-green-lighter: #A8E0B5;
    --safaricom-green-lightest: #D4F0DC;
}

.bg-safaricom {
    background-color: var(--safaricom-green);
}

.text-safaricom {
    color: var(--safaricom-green);
}

.border-safaricom {
    border-color: var(--safaricom-green);
}

.gradient-safaricom {
    background: linear-gradient(135deg, var(--safaricom-green) 0%, var(--safaricom-green-dark) 100%);
}

.bg-safaricom-light {
    background: linear-gradient(135deg, var(--safaricom-green-lightest) 0%, var(--safaricom-green-lighter) 100%);
}

.hover-safaricom:hover {
    color: var(--safaricom-green);
}

.focus-safaricom:focus {
    border-color: var(--safaricom-green);
    box-shadow: 0 0 0 3px rgba(48, 181, 74, 0.15);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

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

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

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.4s ease-out;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-menu-button {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

.hamburger {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #30B54A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 4px;
}

.hamburger span:nth-child(2) {
    top: 11px;
}

.hamburger span:nth-child(3) {
    bottom: 4px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

