/*
 Theme Name: Hostinger AI Child
 Description: Child theme for Hostinger AI Theme
 Author: SAC Consulting Engineering
 Template: hostinger-ai-theme
 Version: 1.0.0
 Text Domain: hostinger-ai-theme-child
*/

/* SAC Hero Section Styling */
.sac-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* ضع رابط صورة المبنى هنا من مكتبة الوسائط */
    background: url('https://saccompany.sa/wp-content/uploads/2026/07/31bb6a38891fa5ef4b02144fb99012ae.jpg') no-repeat center center/cover;
    font-family: system-ui, -apple-system, sans-serif;
    color: #ffffff;
    direction: rtl;
}

/* Dark Gradient Overlay */
.sac-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.88) 0%, rgba(30, 41, 59, 0.4) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.sac-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navbar */
.sac-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.sac-logo img {
    height: 55px;
    width: auto;
}

.sac-nav-menu {
    display: flex;
    gap: 25px;
}

.sac-nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sac-nav-menu a.active, .sac-nav-menu a:hover {
    color: #38bdf8;
}

.sac-nav-left {
    display: flex;
    gap: 12px;
}

/* Buttons */
.sac-btn {
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.sac-btn-teal {
    background-color: #2dd4bf;
    color: #0f172a;
}

.sac-btn-teal:hover {
    background-color: #14b8a6;
}

.sac-btn-primary {
    background-color: #0d9488;
    color: #ffffff;
}

.sac-btn-white {
    background-color: #ffffff;
    color: #0f172a;
}

/* Hero Content */
.sac-hero-content {
    margin-bottom: 120px;
    max-width: 600px;
}

.sac-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2dd4bf;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sac-line {
    width: 4px;
    height: 20px;
    background-color: #2dd4bf;
}

.sac-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
}

.sac-hero-buttons {
    display: flex;
    gap: 15px;
}

/* Arrows */
.sac-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    backdrop-filter: blur(5px);
}

.sac-arrow-left { left: 20px; }
.sac-arrow-right { right: 20px; }