/* Base & Reset */
:root {
    --primary-color: #f97316; /* Vibrant Orange */
    --primary-hover: #ea580c;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1ebd5a;
    --white: #ffffff;
    --dark: #0f172a; /* Slate Dark */
    --dark-lighter: #1e293b;
    --gray-light: #f1f5f9;
    --gray-medium: #e2e8f0;
    --gray-text: #64748b;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-gray {
    background-color: var(--gray-light);
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 800;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Floating Contact Plugin */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatPulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    animation: none;
}

.float-wa {
    background-color: var(--whatsapp-color);
}

.float-wa:hover {
    background-color: var(--whatsapp-hover);
}

.float-call {
    background-color: var(--primary-color);
}

.float-call:hover {
    background-color: var(--primary-hover);
}

@keyframes floatPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1.05rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.15rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-lighter);
    color: #cbd5e1;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right span {
    margin-left: 20px;
}

.top-bar-right i {
    color: var(--primary-color);
    margin-left: 5px;
}

.social-icons-small a {
    color: #cbd5e1;
    margin-right: 15px;
}

.social-icons-small a:hover {
    color: var(--primary-color);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    position: relative;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    padding: 50px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-links li a {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-medium);
    color: var(--dark);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

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

.footer-links ul li a {
    color: #cbd5e1;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-right: 8px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links, .contact-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text {
        padding-left: 15px !important;
        padding-right: 15px !important;
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
    }
    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.4 !important;
    }
    .hero-text p {
        font-size: 1rem !important;
    }
    .hero-bg-shape {
        display: none !important;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}
