:root {
    --primary: #00AEEF;
    --primary-dark: #0077B6;
    --primary-light: #E0F7FF;
    --accent: #F5861F;
    --accent-dark: #D97216;
    --success: #00AEEF;
    --warning: #F5861F;
    --warning-dark: #D97216;
    --danger: #DC3545;
    --dark: #1A1A2E;
    --gray: #6C757D;
    --light-gray: #F4F6F8;
    --bg: #FFFFFF;
    --white: #FFFFFF;
}

/* Dark Theme Variables */
body.dark-theme {
    --bg: #0F1115;
    --white: #1A1D24;
    --dark: #E8E8E8;
    --gray: #A0A0A0;
    --light-gray: #252830;
}

body.dark-theme {
    background-color: var(--bg);
    color: var(--dark);
}

body.dark-theme .header-area {
    background: rgba(15,17,21,0.95);
    border-bottom-color: rgba(255,255,255,0.06);
}

body.dark-theme .nav-link-custom {
    color: var(--dark);
}

body.dark-theme .btn-getstarted {
    background: linear-gradient(135deg, #00AEEF 0%, #0077B6 100%);
}

body.dark-theme .business-card,
body.dark-theme .feature-card {
    background: var(--white);
    border-color: rgba(255,255,255,0.08);
}

body.dark-theme .business-card h4,
body.dark-theme .feature-card h4 {
    color: var(--dark);
}

body.dark-theme .dropdown-menu {
    background: var(--white);
    border-color: rgba(255,255,255,0.08);
}

body.dark-theme .dropdown-item {
    color: var(--dark);
}

body.dark-theme .dropdown-item:hover {
    background: rgba(0,174,239,0.1);
}

body.dark-theme .offcanvas {
    background: var(--white);
}

body.dark-theme .offcanvas-header {
    border-bottom-color: rgba(255,255,255,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--bg);
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.page-header {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--white);
    color: var(--dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.pricing-faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.faq-item h4 i {
    margin-right: 10px;
}

.faq-item p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info {
    padding-right: 40px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 0;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--warning);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    background: var(--white);
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.map-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder span {
    font-size: 16px;
    opacity: 0.8;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-login {
    background: transparent;
    color: var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-signin {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-signin:hover {
    background: #333;
    color: #fff;
}

.btn-getstarted {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-getstarted:hover {
    background: var(--accent-dark);
    color: var(--white);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
}

.btn-auth:hover {
    background: var(--primary-dark);
}

.btn-cta {
    background: var(--warning);
    color: var(--white);
}

.btn-cta:hover {
    background: var(--warning-dark);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.pricing-preview-section {
    padding: 100px 0;
    background: var(--white);
}

.integrations-section {
    padding: 100px 0;
    background: var(--white);
}

.integrations-section .section-subtitle {
    margin-bottom: 50px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.integration-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

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

.integration-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.integration-icon i {
    font-size: 28px;
}

.integration-icon.mpesa-icon {
    background: #00A651;
}

.integration-icon.whatsapp-icon {
    background: #25D366;
}

.integration-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.integration-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 992px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-card {
        padding: 25px 15px;
    }
}

.business-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.business-card-img {
    height: 220px;
}

.business-card-img img {
    transition: transform 0.4s ease;
}

.business-card:hover img {
    transform: scale(1.04);
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-shape img {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.features-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.feature-card {
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.feature-media {
    height: 180px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-media img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.feature-icon .fa-whatsapp {
    color: #25D366;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

.services-section {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
}

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

.service-item i {
    font-size: 40px;
    color: var(--primary);
}

.service-item span {
    font-size: 16px;
    font-weight: 600;
}

.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg);
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card.popular {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    border: 3px solid var(--warning);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9800;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 20px;
    vertical-align: top;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
}

.price .period {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pricing-features li i {
    color: var(--success);
}

.pricing-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 10px;
    font-style: italic;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
}

.btn-pricing:hover {
    background: var(--primary-dark);
}

.pricing-card.popular .btn-pricing {
    background: var(--white);
    color: var(--primary);
}

.testimonial-section {
    padding: 100px 0;
    background: var(--bg);
}

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    margin-bottom: 30px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer {
    background: #0D1B2A;
    color: var(--white);
}

.footer a:hover {
    color: var(--accent) !important;
}

.footer-social a:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 2000;
}

.modal-overlay.active {
    display: block;
}

.auth-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    display: none;
    z-index: 3000;
}

.auth-modal.active {
    display: block;
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--light-gray);
}

.auth-modal-header h3 {
    font-size: 24px;
}

.auth-modal-header button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-modal-header button:hover {
    background: var(--light-gray);
}

.auth-modal-body {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-footer {
    text-align: right;
    margin-bottom: 20px;
}

.form-footer a {
    color: var(--primary);
    font-size: 14px;
}

.form-footer a:hover {
    text-decoration: underline;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    color: var(--gray);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-buttons {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .page-header {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* ========== Scroll Animations ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delay for children */
.fade-in-up .stagger-1 { transition-delay: 0.1s; }
.fade-in-up .stagger-2 { transition-delay: 0.2s; }
.fade-in-up .stagger-3 { transition-delay: 0.3s; }
.fade-in-up .stagger-4 { transition-delay: 0.4s; }
.fade-in-up .stagger-5 { transition-delay: 0.5s; }
.fade-in-up .stagger-6 { transition-delay: 0.6s; }

/* ========== Modern Card Hover Effects ========== */
.business-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.08);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,174,239,0.12);
    border-color: rgba(0,174,239,0.2);
}

.business-card .business-card-img {
    transition: transform 0.4s ease;
}

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

.business-card h4 {
    transition: color 0.3s ease;
}

.business-card:hover h4 {
    color: #004D2E;
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,174,239,0.1);
    border-color: rgba(0,174,239,0.15);
}

.feature-card .feature-media {
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-media img {
    transform: scale(1.08);
}

.feature-card h4 {
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #00AEEF;
}

/* Navigation hover effects */
.nav-pill:hover {
    background: #fff;
    color: #1A1A2E !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-pill.active {
    background: #00AEEF;
    color: #fff !important;
}

/* Enhanced dropdown styling */
.dropdown-menu {
    animation: dropdownFadeIn 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.dropdown-item {
    transition: all 0.2s ease;
    font-weight: 500;
    color: #4A4A4A;
}

.dropdown-item:hover {
    background: #F4F6F8;
    color: #1A1A2E !important;
}

/* Theme toggle button hover */
.theme-toggle:hover {
    background: rgba(0,174,239,0.1);
    transform: rotate(15deg);
}

/* Logo hover effect */
header a:hover img {
    transform: scale(1.05);
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,174,239,0.4);
}

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

/* Mobile menu hover effects */
.mobile-nav-link:hover {
    background: rgba(0,174,239,0.04);
    color: #00AEEF !important;
    padding-left: 24px;
}

.mobile-sub-link:hover {
    background: rgba(0,174,239,0.08);
    color: #00AEEF !important;
    padding-left: 32px;
}

/* Chevron rotation on collapse */
[data-bs-toggle="collapse"][aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* ========== Premium Typography ========== */
.hero-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-text {
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-subtitle {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.business-card h4,
.feature-card h4 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Enhanced button typography */
.btn {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-getstarted {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Typewriter Cursor Animation */
.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}