/* Base reset and fonts */
*{box-sizing:border-box}
html,body{height:100%}
body{font-family:'Cairo',sans-serif;margin:0;color:#222;background:#f5f7fb;line-height:1.6}

.container{max-width:1100px;margin:0 auto;padding:1rem}

/* Header */
.site-header{background:linear-gradient(90deg,#0f172a,#111827);color:#fff;position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.8rem 0}
.brand{display:flex;align-items:center;gap:0.7rem;color:#fff;text-decoration:none}
.brand img{width:48px;height:48px}
.brand span{font-weight:700}
.nav ul{display:flex;list-style:none;margin:0;padding:0;gap:1rem}
.nav a{color:#fff;text-decoration:none;padding:0.35rem 0.7rem;border-radius:6px}
.nav a:hover{background:rgba(255,255,255,0.06)}

.nav-toggle{display:none;background:none;border:1px solid rgba(255,255,255,0.08);padding:0.2rem 0.6rem;color:#fff;border-radius:6px}

.skip-link{position:fixed;left:0;top:0;background:#111827;color:#fff;padding:0.6rem 0.9rem;transform:translateY(-120%);transition:transform .24s ease;border-bottom-right-radius:8px;border-bottom-left-radius:8px;z-index:90}
.skip-link:focus{transform:translateY(0)}

/* Floating call */
.floating-call{position:fixed;left:1rem;bottom:1rem;background:#f97316;color:#fff;border-radius:60px;padding:0.8rem 1rem;box-shadow:0 10px 30px rgba(15,23,42,0.2);display:flex;gap:0.6rem;align-items:center;z-index:60}
.floating-call .phone{font-weight:700}
.floating-call svg{width:20px;height:20px}

/* Hero */
.hero{padding:2.5rem 0;background:linear-gradient(180deg,#ffffff,#f8fafc);}
.hero-inner{display:flex;align-items:center;gap:2rem}
.hero-content{flex:1}
.hero h1{font-size:2rem;margin:0 0 0.5rem}
.subtitle{color:#4b5563}
.hero-cta{margin-top:1rem}
.btn{display:inline-block;padding:0.7rem 1rem;border-radius:10px;text-decoration:none;border:0;cursor:pointer}
.btn-primary{background:#f97316;color:#fff;box-shadow:0 10px 20px rgba(249,115,22,0.15);transition:transform .22s ease, box-shadow .22s ease}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 18px 30px rgba(249,115,22,0.18)}
.btn-outline{background:transparent;border:1px solid #e5e7eb;color:#111}

.hero-visual{flex:1;display:flex;justify-content:center}
.hero-visual .hero-pattern{width:100%;max-width:420px;height:auto;border-radius:12px;box-shadow:0 18px 35px rgba(15,23,42,0.06);transform:translateY(20px);opacity:0;animation:floatIn .9s ease forwards .18s}

.tagline{margin-top:0.6rem;color:#6b7280;font-weight:500}
.badges{display:flex;gap:0.6rem;margin-top:0.75rem}
.badge{background:rgba(255,255,255,0.92);padding:0.35rem 0.6rem;border-radius:999px;font-size:0.9rem;display:flex;align-items:center;gap:0.45rem;box-shadow:0 6px 18px rgba(2,6,23,0.03)}
.badge .icon{width:18px;height:18px;color:#f97316}

/* Sections */
.section{padding:2.5rem 0}
.about h2,.services h2,.contact h2{font-size:1.5rem;margin-bottom:0.8rem}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.card{background:#fff;border-radius:8px;padding:1rem;box-shadow:0 6px 18px rgba(57,73,171,0.03);transition:transform .25s ease, box-shadow .25s ease}
.card:hover{transform:translateY(-6px);box-shadow:0 22px 36px rgba(15,23,42,0.08)}
.card-icon{width:56px;height:56px;border-radius:10px;background:linear-gradient(180deg,#fff,#fff);display:flex;align-items:center;justify-content:center;margin-bottom:0.6rem;box-shadow:inset 0 -12px 24px rgba(2,6,23,0.02)}
.card-icon svg{width:28px;height:28px;color:#0f172a}
/* Scroll reveal animation */
@keyframes fadeInUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@keyframes floatIn{from{opacity:0;transform:translateY(28px) scale(0.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.reveal{opacity:0;transform:translateY(12px);transition:opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1;transform:none}

.note{color:#9CA3AF;font-style:italic}

/* Contact */
.contact-inner{display:flex;gap:2rem;align-items:flex-start}
.contact-card{flex:0 0 360px;background:#fff;padding:1.2rem;border-radius:8px;box-shadow:0 6px 18px rgba(2,6,23,0.04)}
.contact-form{flex:1;background:#fff;padding:1.2rem;border-radius:8px;box-shadow:0 6px 18px rgba(2,6,23,0.04)}
.contact-form label{display:block;margin:0.6rem 0 0.2rem}
.contact-form input,.contact-form textarea{width:100%;padding:0.6rem;border-radius:6px;border:1px solid #e6e6e6}
.contact-actions{margin-top:1rem}
.contact-icon{width:18px;height:18px;vertical-align:middle;margin-inline-start:0.45rem}

/* Footer */
.site-footer{padding:1.2rem 0;background:#0b1220;color:#fff}
.site-footer p{margin:0;text-align:center}

/* Active nav link and subtle header effect */
.nav a.active{background:rgba(255,255,255,0.08);box-shadow:inset 0 -6px 0 rgba(255,255,255,0.06)}
.site-header{backdrop-filter: blur(4px)}

/* Responsive */
@media (max-width:900px){
 .hero-inner{flex-direction:column}
 .grid{grid-template-columns:repeat(1,1fr)}
 .contact-inner{flex-direction:column}
}

@media (max-width:700px){
 .nav{display:none}
 .nav-toggle{display:block}
 .nav.open{display:block;position:absolute;right:1rem;top:64px;background:#0f172a;padding:0.8rem;border-radius:8px}
 .nav ul{flex-direction:column}
}

@media (max-width:480px){
	.hero h1{font-size:1.5rem}
	.brand img{width:44px;height:44px}
}
