:root {
    --primary-color: #007bff;
    /* Trustworthy Blue */
    --secondary-color: #4CAF50;
    /* WhatsApp Green */
    --accent-color: #E3F2FD;
    /* Soft Light Blue */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --font-family: 'Cairo', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
    /* Ensure no underline */
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0069d9;
}

.btn-whatsapp {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-whatsapp:hover {
    background-color: #45a049;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--white);
    position: relative;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-section h1 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sub-headline {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #f0f0f0;
    font-weight: 500;
}

.phone-link {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4CAF50;
    /* Make phone number pop in green or keep white? Green is good for action */
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.phone-link:hover {
    color: var(--secondary-color);
}

.availability {
    font-size: 1rem;
    color: #e8f5e9;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

/* ... existing services styles ... */

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-card h4 {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: var(--white);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-list {
    text-align: right;
    display: inline-block;
    margin: 0 auto 30px;
}

.trust-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-list i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.social-proof .stars {
    color: #ffc107;
    margin-bottom: 10px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581578731117-104f8eda65bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.final-cta h2,
.final-cta p,
.final-cta a {
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.phone-link-large {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
}

footer p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .phone-link {
        font-size: 1.6rem;
    }

    .phone-link-large {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }
}