/* TekHR Landing Page Custom Styles */

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 142, 204, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 142, 204, 0.6); }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Loader */
.loader {
    background: linear-gradient(135deg, #008ECC, #0056b3, #00d4ff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.loader-logo {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 142, 204, 0.1);
}

/* Enhanced Container Padding */
.container {
    padding-left: 25px;
    padding-right: 25px;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: slide 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

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

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

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

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Contact and Branches Sections Right Alignment */
.contact-info h3,
.contact-info h4,
.contact-info p {
    text-align: right;
}

/* Enhanced Section Spacing */
.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    padding: 0 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 142, 204, 0.05), rgba(0, 212, 255, 0.05));
    position: relative;
}

.plans .section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plans .section-title p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
    text-align: center;
}

.plans .row {
    margin-top: 60px;
}

.plans .plan-card {
    margin-bottom: 30px;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tek Part Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 142, 204, 0.02), rgba(0, 212, 255, 0.02));
    position: relative;
}

.services::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,142,204,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services .section-title p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
    text-align: center;
}

.services .row {
    margin-top: 60px;
}

.services .service-card {
    margin-bottom: 30px;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services .service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
}

.services .service-icon {
    margin-bottom: 30px;
}

.services .service-icon i {
    font-size: 2.5rem;
}

.services .service-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    flex-grow: 1;
    text-align: center;
}

/* Contact Items Alignment */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: right;
    flex-direction: row-reverse;
}

.contact-item .contact-icon {
    margin: 0 0 0 15px;
    flex-shrink: 0;
}

.contact-item .contact-text {
    flex-grow: 1;
    text-align: right;
}

.contact-item .contact-text h4 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
    font-family: 'Arial', sans-serif;
}

.contact-item .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: right;
    font-family: 'Arial', sans-serif;
}

/* Contact Info Cards Right Alignment */
.contact-info {
    text-align: right;
    color: #ffffff;
}

.contact-info h3 {
    text-align: right;
    margin-bottom: 30px;
    font-weight: 700;
    color: #ffffff;
}

.contact-info h4 {
    text-align: right;
    margin-bottom: 5px;
    font-weight: 600;
    color: #ffffff;
}

.contact-info p {
    text-align: right;
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Arial', sans-serif;
}

/* Arabic Numbers Styling */
.contact-info .phone-number,
.contact-info .email,
.contact-item .contact-text .phone-number,
.contact-item .contact-text .email {
    font-family: 'Arial', 'Tahoma', sans-serif;
    font-weight: 500;
    direction: ltr;
    text-align: right;
    unicode-bidi: bidi-override;
}

/* Phone numbers with Arabic digits */
.contact-info .phone-number-arabic,
.contact-item .contact-text .phone-number-arabic {
    font-family: 'Arial', 'Tahoma', sans-serif;
    font-weight: 500;
    direction: rtl;
    text-align: right;
}

@media (min-width: 768px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0 8px;
        padding: 6px 12px;
    }
    
    .navbar-brand {
        padding: 4px 10px;
    }
}

.navbar-brand {
    color: #333 !important;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 5px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 142, 204, 0.05), rgba(0, 212, 255, 0.05));
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(0, 142, 204, 0.1), rgba(0, 212, 255, 0.1));
    box-shadow: 0 5px 15px rgba(0, 142, 204, 0.2);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 142, 204, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 142, 204, 0.25);
}

.navbar-brand img {
    transition: transform 0.3s ease;
    max-height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 35px;
    }
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

/* Enhanced Hero Section */
.hero::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50px); }
}

.hero h1 {
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 142, 204, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 142, 204, 0.3);
    padding: 20px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.3rem;
    padding: 0 10px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 15px;
    font-size: 1rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 142, 204, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 142, 204, 0.1), transparent);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 142, 204, 0.1);
    color: #333;
}

.plan-card h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.plan-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: center;
}

.plan-card .plan-features li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card .plan-features li i {
    margin-left: 10px;
    font-size: 1.1rem;
}

.plan-card .plan-features li i.fa-check {
    color: #28a745;
}

.plan-card .plan-features li i.fa-times {
    color: #dc3545;
}

.plan-card .btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.plan-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
}

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

.plan-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 142, 204, 0.3);
}

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

/* All Plans Section */
#all-plans {
    animation: fadeInUp 0.8s ease;
}

#all-plans .plan-card {
    animation: slideInUp 0.6s ease;
}

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

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

/* Button State Changes */
.btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
    color: white;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.plan-card.featured::after {
    content: 'الأكثر شعبية';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.plan-price::before {
    content: 'ج.م';
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 142, 204, 0.2), rgba(0, 212, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 142, 204, 0.2), transparent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-icon:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
}



.footer {
    background: #f8f9fa !important;
    color: #333 !important;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 142, 204, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(0, 142, 204, 0.3);
}

/* Print Styles */
/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
}

@media (min-width: 1400px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0 6px;
        padding: 5px 10px;
    }
    
    .navbar-brand {
        padding: 3px 8px;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .plan-card {
        padding: 40px 25px;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .plan-card.featured {
        transform: scale(1.02);
    }
    
    .plan-card.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        padding: 10px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: 80vh;
        margin-top: 40px;
    }
    
    .hero-content {
        padding: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
    }
    
    .hero img {
        margin-top: 30px;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .plans {
        padding: 60px 0;
    }
    
    .plans .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .plans .section-title p {
        font-size: 1.1rem;
    }
    
    .plans .row {
        margin-top: 40px;
    }
    
    .plans .plan-card {
        min-height: 450px;
        margin-bottom: 25px;
    }
    
    .plan-card h3 {
        font-size: 1.3rem;
    }
    
    .plan-card .plan-features li {
        font-size: 0.95rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .services .section-title p {
        font-size: 1.1rem;
    }
    
    .services .row {
        margin-top: 40px;
    }
    
    .services .service-card {
        min-height: 300px;
        margin-bottom: 25px;
    }
    
    .services .service-card h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .services .service-card p {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .plan-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .plan-card.featured {
        transform: none;
        margin-bottom: 40px;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .service-card {
        padding: 35px 25px;
        margin-bottom: 30px;
        border-radius: 18px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    

    
    .footer {
        padding: 40px 0 20px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
        min-height: 70vh;
        margin-top: 50px;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero img {
        margin-top: 20px;
        border-radius: 10px;
    }
    
    .plans {
        padding: 50px 0;
    }
    
    .plans .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .plans .section-title p {
        font-size: 1rem;
    }
    
    .plans .row {
        margin-top: 30px;
    }
    
    .plans .plan-card {
        min-height: 400px;
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .plan-card h3 {
        font-size: 1.2rem;
    }
    
    .plan-card .plan-features li {
        font-size: 0.9rem;
    }
    
    .services {
        padding: 50px 0;
    }
    
    .services .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .services .section-title p {
        font-size: 1rem;
    }
    
    .services .row {
        margin-top: 30px;
    }
    
    .services .service-card {
        min-height: 280px;
        margin-bottom: 20px;
    }
    
    .services .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .services .service-card p {
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .plan-card {
        padding: 25px 15px;
    }
    
    .service-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    

    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px;
        min-height: 60vh;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 8px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero img {
        margin-top: 15px;
        border-radius: 8px;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .plan-card {
        padding: 20px 15px;
    }
    
    .service-card {
        padding: 20px 10px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 70px 0 30px;
        min-height: 60vh;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    

}

/* Enhanced Plan Cards Grid */
.plans .row {
    justify-content: center;
}

.plans .col-lg-3,
.plans .col-md-6 {
    margin-bottom: 30px;
}

/* Enhanced Animations */
.plan-card {
    animation: slideInFromBottom 0.6s ease-out;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }
.plan-card:nth-child(5) { animation-delay: 0.5s; }
.plan-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Loading States */
.plan-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.plan-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@media print {
    .loader,
    .back-to-top,
    .navbar {
        display: none !important;
    }
}

/* Enhanced Mobile Touch Interactions */
@media (max-width: 768px) {
    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .feature-card:active,
    .service-card:active,
    .plan-card:active {
        transform: translateY(2px);
        transition: transform 0.1s ease;
    }
}

/* Better Mobile Performance */
@media (max-width: 768px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .hero::before,
    .feature-card::before,
    .service-card::before {
        will-change: transform;
    }
}

/* Enhanced Mobile Accessibility */
@media (max-width: 768px) {
    .btn:focus,
    .nav-link:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
}

/* Better Mobile Navigation */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
        color: #333 !important;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(0, 142, 204, 0.1);
        color: var(--primary-color) !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 142, 204, 0.25);
    }
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    p {
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

/* Better Mobile Spacing */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Enhanced Mobile Buttons */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-buttons .btn {
        min-height: 48px;
        font-size: 1rem;
        border-radius: 25px;
    }
}

/* Better Mobile Cards */
@media (max-width: 768px) {
    .feature-card,
    .service-card,
    .plan-card {
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .feature-card:hover,
    .service-card:hover,
    .plan-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
}

/* Enhanced Mobile Icons */
@media (max-width: 768px) {
    .service-icon,
    .feature-icon,
    .contact-icon {
        transition: all 0.3s ease;
    }
    
    .service-icon:hover,
    .feature-icon:hover,
    .contact-icon:hover {
        transform: scale(1.1);
    }
}

/* Better Mobile Loading States */
@media (max-width: 768px) {
    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .loading {
        pointer-events: none;
        opacity: 0.7;
    }
}

/* Enhanced Mobile Focus States */
@media (max-width: 768px) {
    .btn:focus,
    .nav-link:focus,
    .form-control:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
}

/* Better Mobile Selection */
@media (max-width: 768px) {
    ::selection {
        background: rgba(0, 123, 255, 0.3);
        color: #000;
    }
    
    ::-moz-selection {
        background: rgba(0, 123, 255, 0.3);
        color: #000;
    }
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        animation-duration: 0.6s;
    }
    
    .hero h1,
    .hero p {
        animation-duration: 0.8s;
    }
    
    .hero-buttons {
        animation-duration: 1s;
    }
}

/* Better Mobile Print Styles */
@media print {
    .hero::before,
    .feature-card::before,
    .service-card::before,
    .plan-card::before {
        display: none !important;
    }
    
    .btn,
    .nav-link,
    .social-link {
        border: 1px solid #000 !important;
        color: #000 !important;
        background: transparent !important;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Enhanced Mobile Landscape */
@media (orientation: landscape) and (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Better Mobile Portrait */
@media (orientation: portrait) and (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced Mobile Touch Targets */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .social-link,
    .dropdown-item {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-control,
    .form-select {
        min-height: 44px;
        font-size: 16px;
    }
}

/* Better Mobile Shadows */
@media (max-width: 768px) {
    .feature-card,
    .service-card,
    .plan-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card:hover,
    .service-card:hover,
    .plan-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
}

/* Enhanced Mobile Borders */
@media (max-width: 768px) {
    .feature-card,
    .service-card,
    .plan-card {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Better Mobile Gradients */
@media (max-width: 768px) {
    .hero::before {
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
    }
}

/* Enhanced Mobile Transitions */
@media (max-width: 768px) {
    .feature-card,
    .service-card,
    .plan-card,
    .btn,
    .nav-link {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Better Mobile Z-Index */
@media (max-width: 768px) {
    .navbar {
        z-index: 1030;
    }
    
    .navbar-collapse {
        z-index: 1029;
    }
    
    .dropdown-menu {
        z-index: 1028;
    }
    
    .whatsapp-btn {
        z-index: 1027;
    }
    
    .back-to-top {
        z-index: 1026;
    }
}

/* Enhanced Mobile Overflow */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        overflow: hidden;
    }
    
    .hero {
        overflow: hidden;
    }
}

/* Better Mobile Position */
@media (max-width: 768px) {
    .whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        position: fixed;
        bottom: 80px;
        right: 20px;
    }
}

/* Enhanced Mobile Display */
@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
    
    .d-block-mobile {
        display: block !important;
    }
    
    .d-flex-mobile {
        display: flex !important;
    }
}

/* Better Mobile Flex */
@media (max-width: 768px) {
    .flex-column-mobile {
        flex-direction: column !important;
    }
    
    .flex-row-mobile {
        flex-direction: row !important;
    }
    
    .justify-center-mobile {
        justify-content: center !important;
    }
    
    .align-center-mobile {
        align-items: center !important;
    }
}

/* Enhanced Mobile Text */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .text-left-mobile {
        text-align: left !important;
    }
    
    .text-right-mobile {
        text-align: right !important;
    }
}

/* Better Mobile Margins */
@media (max-width: 768px) {
    .mt-mobile-0 { margin-top: 0 !important; }
    .mt-mobile-1 { margin-top: 0.25rem !important; }
    .mt-mobile-2 { margin-top: 0.5rem !important; }
    .mt-mobile-3 { margin-top: 1rem !important; }
    .mt-mobile-4 { margin-top: 1.5rem !important; }
    .mt-mobile-5 { margin-top: 3rem !important; }
    
    .mb-mobile-0 { margin-bottom: 0 !important; }
    .mb-mobile-1 { margin-bottom: 0.25rem !important; }
    .mb-mobile-2 { margin-bottom: 0.5rem !important; }
    .mb-mobile-3 { margin-bottom: 1rem !important; }
    .mb-mobile-4 { margin-bottom: 1.5rem !important; }
    .mb-mobile-5 { margin-bottom: 3rem !important; }
    
    .ml-mobile-0 { margin-left: 0 !important; }
    .ml-mobile-1 { margin-left: 0.25rem !important; }
    .ml-mobile-2 { margin-left: 0.5rem !important; }
    .ml-mobile-3 { margin-left: 1rem !important; }
    .ml-mobile-4 { margin-left: 1.5rem !important; }
    .ml-mobile-5 { margin-left: 3rem !important; }
    
    .mr-mobile-0 { margin-right: 0 !important; }
    .mr-mobile-1 { margin-right: 0.25rem !important; }
    .mr-mobile-2 { margin-right: 0.5rem !important; }
    .mr-mobile-3 { margin-right: 1rem !important; }
    .mr-mobile-4 { margin-right: 1.5rem !important; }
    .mr-mobile-5 { margin-right: 3rem !important; }
}

/* Enhanced Mobile Padding */
@media (max-width: 768px) {
    .pt-mobile-0 { padding-top: 0 !important; }
    .pt-mobile-1 { padding-top: 0.25rem !important; }
    .pt-mobile-2 { padding-top: 0.5rem !important; }
    .pt-mobile-3 { padding-top: 1rem !important; }
    .pt-mobile-4 { padding-top: 1.5rem !important; }
    .pt-mobile-5 { padding-top: 3rem !important; }
    
    .pb-mobile-0 { padding-bottom: 0 !important; }
    .pb-mobile-1 { padding-bottom: 0.25rem !important; }
    .pb-mobile-2 { padding-bottom: 0.5rem !important; }
    .pb-mobile-3 { padding-bottom: 1rem !important; }
    .pb-mobile-4 { padding-bottom: 1.5rem !important; }
    .pb-mobile-5 { padding-bottom: 3rem !important; }
    
    .pl-mobile-0 { padding-left: 0 !important; }
    .pl-mobile-1 { padding-left: 0.25rem !important; }
    .pl-mobile-2 { padding-left: 0.5rem !important; }
    .pl-mobile-3 { padding-left: 1rem !important; }
    .pl-mobile-4 { padding-left: 1.5rem !important; }
    .pl-mobile-5 { padding-left: 3rem !important; }
    
    .pr-mobile-0 { padding-right: 0 !important; }
    .pr-mobile-1 { padding-right: 0.25rem !important; }
    .pr-mobile-2 { padding-right: 0.5rem !important; }
    .pr-mobile-3 { padding-right: 1rem !important; }
    .pr-mobile-4 { padding-right: 1.5rem !important; }
    .pr-mobile-5 { padding-right: 3rem !important; }
}

/* Additional fixes for header and footer */
.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: #333 !important;
}

.footer-content h1,
.footer-content h2,
.footer-content h3,
.footer-content h4,
.footer-content h5,
.footer-content h6 {
    color: #333 !important;
}

.footer-content p {
    color: #333 !important;
}

.navbar-brand {
    color: #333 !important;
}

.navbar-nav .nav-link {
    color: #333 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.social-link {
    color: #333 !important;
}

.social-link:hover {
    color: white !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99999 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-dropdown {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 999;
    display: none;
    animation: slideInUp 0.3s ease;
    min-width: 250px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-dropdown.show {
    display: block;
}

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

.whatsapp-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.whatsapp-option:hover {
    background: #e9ecef;
    transform: translateX(-5px);
    border-color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-option:first-child {
    margin-top: 0;
}

.whatsapp-option:last-child {
    margin-bottom: 0;
}

.whatsapp-option-icon {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.whatsapp-option:hover .whatsapp-option-icon {
    transform: scale(1.1);
}

.whatsapp-option-text {
    flex: 1;
}

.whatsapp-option-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.whatsapp-option-text p {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #666;
}

.whatsapp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: #e9ecef;
    color: #333;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 60px;
        height: 60px;
        font-size: 25px;
        z-index: 99999 !important;
        position: fixed !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .whatsapp-dropdown {
        bottom: 100px;
        right: 20px;
        left: 20px;
        min-width: auto;
        z-index: 99998 !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px;
        height: 50px;
        font-size: 20px;
        z-index: 99999 !important;
        position: fixed !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .whatsapp-dropdown {
        bottom: 80px;
        right: 15px;
        left: 15px;
        padding: 15px;
        z-index: 99998 !important;
    }
    
    .whatsapp-option {
        padding: 12px;
    }
    
    .whatsapp-option-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.whatsapp-phone {
    direction: ltr;
    unicode-bidi: embed;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
}

/* Ensure WhatsApp button is always visible */
#whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Override any potential hiding */
.whatsapp-float {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    z-index: 99999 !important;
}