/* ייבוא גופן מודרני מגוגל - מספק מראה נקי בהרבה */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;700;800&display=swap');

:root {
    --primary-blue: #0f172a; /* כחול כהה מאוד, מודרני */
    --accent-yellow: #fbbf24; /* צהוב חם */
    --success-green: #10b981; /* ירוק רענן */
    --text-main: #1e293b;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Assistant', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-main);
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
}

* {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* תנועה חלקה יותר */
    box-sizing: border-box;
}

/* תפריט ניווט - אפקט זכוכית (Glassmorphism) */
nav {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: absolute;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
    margin: 0;
    padding: 18px 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 50px;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: var(--accent-yellow);
}

/* אזור ה-Hero - עוצמתי ויוקרתי */
header {
    position: relative;
    height: 75vh;
    min-height: 650px;
    background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.85)), 
                url('https://aexcellentwash.com/images/machine.jpg') no-repeat center center/cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.header-content {
    max-width: 1000px;
    padding: 40px;
    z-index: 2;
}

.logo {
    width: 180px;
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
}

header h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.6rem;
    margin: 0 0 40px 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
}

/* כפתור ה-CTA - עיצוב "גבוה" */
.cta-button {
    background: var(--success-green) !important;
    color: white !important;
    padding: 20px 60px;
    text-decoration: none !important;
    border-radius: 12px; 
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    border: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.4);
    background-color: #059669 !important;
}

/* מרכוז ושדרוג הכפתור התחתון */
.cta-container {
    display: flex;            
    justify-content: center;   
    align-items: center;       
    text-align: center;
    margin: 80px 0;           
    width: 100%;
}

.cta-container p {
    margin: 0;                
}

.cta-container .cta-button {
    background: #10b981 !important; 
    color: white !important;
    padding: 20px 60px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    display: inline-block;
}

.cta-container .cta-button:hover {
    transform: translateY(-5px) scale(1.03); 
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.4);
    background-color: #059669 !important;
}

/* המיכל הלבן המרכזי */
main {
    width: 90%;
    max-width: 1200px;
    margin: -80px auto 80px;
    padding: 70px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    position: relative;
    z-index: 10;
}

/* סקשנים וכותרות */
h2 {
    color: var(--primary-blue);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 5px;
    background-color: var(--accent-yellow);
    border-radius: 10px;
}

/* כרטיסי שירותים יוקרתיים */
#about ul, #services ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0;
    list-style: none;
    margin-top: 40px;
}

#about li, #services li {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

#about li h3, #services li h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

#about li:hover, #services li:hover {
    transform: scale(1.03);
    border-color: var(--success-green);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* פוטר מעוצב ויוקרתי */
footer {
    background: var(--primary-blue);
    color: #94a3b8;
    padding: 80px 20px 30px;
    text-align: center;
    border-top: 4px solid var(--accent-yellow); /* פס דקורטיבי עליון */
}

footer h2 {
    color: var(--accent-yellow); /* צבע כותרת צהוב */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    border: none; /* ביטול הפס הצידי מה-h2 הכללי */
    padding: 0;
}

footer h2::after {
    display: none; /* ביטול הקו התחתון בכותרת הפוטר */
}

footer p {
    font-size: 1.2rem;
    margin: 15px 0;
}

footer a { 
    color: var(--accent-yellow); 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 1.3rem; 
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff;
}

footer small {
    display: block;
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    header h1 { font-size: 2.6rem; }
    header p { font-size: 1.2rem; }
    main { padding: 40px 20px; margin-top: -50px; }
    footer h2 { font-size: 1.8rem; }
}