
body {
  font-family: 'Lato', sans-serif; /* Warm, readable body text */
  font-weight: 400; /* Regular weight for paragraphs */
  background: #f0f1f1;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif; /* Modern, geometric headings */
  font-weight: 500; /* Semi-bold for clarity */
  letter-spacing: -0.03em
}

h4, h5, h6 {
  font-family: 'Lato', sans-serif; /* Modern, geometric headings */
  font-weight: 500; /* Semi-bold for clarity */
  letter-spacing: -0.03em
}

button, .cta-button, .price, .nav-links {
  font-family: 'Poppins', sans-serif; /* Consistent and bold for CTAs */
  font-weight: 600; /* Extra emphasis */
}

.brand-logo {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    max-width: 150px;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.hero-section {
    background: linear-gradient(rgba(5.1, 11.0, 32.5, 0.75), rgba(5.1, 11.0, 32.5, 0.75)), url('/assets/images/bg.jpg'); */
    /* background: linear-gradient(rgba(91.8, 46.3, 29.8, 1), rgba(91.8, 46.3, 29.8, 0.8)), url('/assets/images/bg.jpg'); */
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-section .btn {
    text-transform: uppercase;
}

.khalifah-logo-center {
    max-width: 250px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


.phone-float {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #a886cd;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.phone-float:hover {
    background: #895cba;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .phone-float {
        bottom: 80px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}