:root {
    --primary-dark: #0b1d16;
    --accent-gold: #C6A87C;
    --white: #ffffff;
    --bg-light: #f4f7f4;
    --text: #333;
    --text-muted: #777;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    color: var(--text);
}

html[dir="ltr"] body { font-family: 'Poppins', sans-serif; }
html[dir="rtl"] body { font-family: 'Cairo', sans-serif; }

/* Legacy button (used in some templates) */
.btn-gold {
    background: var(--accent-gold);
    color: white;
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.btn-gold:hover {
    background: #a88a5c;
    color: white;
}

/* Page hero */
.page-hero {
    height: 45vh;
    margin-top: 120px;
    background: linear-gradient(rgba(11, 29, 22, 0.85), rgba(11, 29, 22, 0.85));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 900;
}

/* Sections */
section {
    padding: 80px 10%;
}

.section-title {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
}


/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    inset-inline-start: 20px;
    background: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 5000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float svg {
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

html[dir="rtl"] .whatsapp-float {
    inset-inline-start: auto;
    inset-inline-end: 20px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

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

/* Form elements */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fafafa;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent-gold);
    background: white;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 4%;
    }
}
