/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #007bff;
    --accent-color: #ffc107;
    --warning-color: #dc3545;
    --text-color: #333;
    --light-text-color: #666;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Warning Banner */
.warning-banner {
    background-color: var(--warning-color);
    color: var(--bg-white);
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header */
header {
    background-color: var(--bg-white);
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 40px;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.company-name {
    display: flex;
    flex-direction: column;
}

.company-name h1 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.company-name p {
    font-size: 0.85em;
    color: var(--light-text-color);
    margin: 0;
}

nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

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

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.contact-button {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
}

.contact-button i {
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('team_photo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero .btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.hero .btn:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

/* Stats Section */
.stats {
    padding: 40px 0;
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 15px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-item p {
    color: var(--light-text-color);
    font-weight: bold;
    font-size: 1.1em;
}

/* Disclaimer Section in Footer */
.footer-disclaimer {
    background-color: var(--warning-color);
    padding: 40px 0;
    text-align: center;
    border-bottom: none;
}

.footer-disclaimer h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3em;
    font-weight: bold;
}

.footer-disclaimer h2 i {
    font-size: 1.5em;
}

.footer-disclaimer p {
    max-width: 1000px;
    margin: 0 auto 15px auto;
    font-size: 0.95em;
    color: var(--bg-white);
    line-height: 1.8;
    font-weight: 500;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 100px 0 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.features h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--light-text-color);
    font-size: 1.1em;
}

.features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--secondary-color);
}

.feature-item i {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--light-text-color);
    line-height: 1.6;
}

/* Steps Section */
.steps {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.steps h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step-item {
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 25px auto;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-item p {
    color: var(--light-text-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: right;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text-color);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05em;
}

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

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 2px;
}

.stars {
    color: #ffc107;
    font-size: 0.9em;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.services h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: right;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--light-text-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-content .btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.service-category {
    margin-bottom: 60px;
    text-align: right;
}

.service-category h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.service-category .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: right;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-item h4 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    margin-bottom: 8px;
    color: var(--light-text-color);
    padding-right: 20px;
    position: relative;
}

.service-item ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-item .btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-item .btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.contact-methods .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact-method-item i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-method-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-method-item p {
    color: var(--light-text-color);
    margin-bottom: 15px;
}

.contact-method-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-method-item a:hover {
    color: var(--primary-color);
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background-color: var(--bg-white);
    text-align: right;
}

.about-us h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.about-us p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--light-text-color);
}

.about-us h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-us ul {
    max-width: 900px;
    margin: 0 auto 20px;
    list-style: none;
    padding: 0;
}

.about-us ul li {
    margin-bottom: 12px;
    padding-right: 30px;
    position: relative;
    color: var(--light-text-color);
}

.about-us ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2em;
}

/* Image Section */
.image-section {
    margin: 40px 0;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: var(--bg-white);
    padding: 50px 0 30px 0;
    font-size: 0.9em;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: right;
    margin-bottom: 30px;
}

footer .footer-section {
    text-align: right;
}

footer .footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: bold;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

footer .footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

footer .footer-section ul li a:hover {
    color: var(--accent-color);
}

footer .footer-contact {
    text-align: right;
}

footer .footer-contact p {
    margin-bottom: 10px;
    color: var(--bg-white);
}

footer .footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

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

footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer-links ul li {
    margin: 0 15px;
}

footer .footer-links ul li a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links ul li a:hover {
    color: var(--accent-color);
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 20px auto;
    text-align: right;
}

form div {
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color);
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    font-size: 1em;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

form button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background-color: var(--bg-light);
    text-align: right;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.floating-btn.phone {
    background-color: var(--secondary-color);
}

.floating-btn.phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.floating-btn.call {
    background-color: var(--warning-color);
}

.floating-btn.call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-section {
        width: 100%;
        justify-content: center;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }

    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .footer-section,
    footer .footer-contact {
        text-align: center;
    }

    .floating-buttons {
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .features .grid, .services .grid, .contact-methods .grid {
        grid-template-columns: 1fr;
    }

    .service-category h3 {
        font-size: 1.8em;
    }

    form {
        text-align: left;
    }

    form label {
        text-align: right;
    }
}
