:root {
    --primary-color: #003366; /* Deep Blue */
    --secondary-color: #d4af37; /* Gold */
    --light-color: #f4f4f4;
    --dark-color: #333;
    --font-family: 'Cairo', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

html[dir="rtl"] {
    direction: rtl;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: #fff;
    color: var(--dark-color);
}

section {
    padding: 5rem 2rem;
    /* make sections fluid to occupy full viewport width while keeping internal max width with a centered container */
    width: 100%;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #c5a230;
    transform: translateY(-3px);
}

/* Animation Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation */
.reveal.visible:nth-child(1) { transition-delay: 0.1s; }
.reveal.visible:nth-child(2) { transition-delay: 0.2s; }
.reveal.visible:nth-child(3) { transition-delay: 0.3s; }
.reveal.visible:nth-child(4) { transition-delay: 0.4s; }

.floating-social{position:fixed;right:16px;bottom:16px;display:flex;flex-direction:column;gap:8px;z-index:1100}
.floating-social a{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#fff;box-shadow:0 8px 20px rgba(0,0,0,.15);transition:transform .2s ease}
.floating-social a:hover{transform:translateY(-3px)}
.floating-social a.whatsapp{background:#25D366}
.floating-social a.facebook{background:#1877F2}
.floating-social a.phone{background:#003366}
.floating-social a svg{width:20px;height:20px;fill:#fff}