/* ============================================================
   assets/css/style.css — Global Styles | Aman Security
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold:       #B8952A;
  --gold-light: #D4AF4E;
  --gold-pale:  #F5EDD5;
  --dark:       #0F1419;
  --dark-2:     #1C2330;
  --gray:       #4A5568;
  --gray-light: #718096;
  --bg:         #FAFAF8;
  --white:      #FFFFFF;
  --border:     #E8E4DC;
  --shadow:     0 4px 30px rgba(15,20,25,0.08);
  --shadow-lg:  0 20px 60px rgba(15,20,25,0.12);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  24px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Cairo',sans-serif; background:var(--bg); color:var(--dark); overflow-x:hidden; line-height:1.6; padding-top:108px; }
body.en { font-family:'DM Sans',sans-serif; direction:ltr; }
body.en h1, body.en h2, body.en h3 { font-family:'Playfair Display',serif; }
img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }

section { padding:90px 40px; }

.section-header { text-align:center; margin-bottom:60px; }
.section-tag { display:inline-block; background:var(--gold-pale); color:var(--gold); font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:6px 16px; border-radius:100px; margin-bottom:16px; }
.section-header h2 { font-size:clamp(28px,4vw,44px); font-weight:800; color:var(--dark); line-height:1.2; margin-bottom:14px; }
.section-header p  { color:var(--gray); font-size:17px; line-height:1.8; max-width:560px; margin:0 auto; }

.page-hero { position:relative; height:420px; display:flex; align-items:flex-end; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; }
.page-hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(15,20,25,.92) 0%,rgba(15,20,25,.45) 60%,rgba(15,20,25,.2) 100%); }
.page-hero-content { position:relative; z-index:2; padding:50px 40px; max-width:800px; }
.breadcrumb { display:flex; align-items:center; gap:10px; margin-bottom:14px; font-size:13px; color:rgba(255,255,255,.5); }
.breadcrumb a { color:rgba(255,255,255,.5); transition:color .3s; }
.breadcrumb a:hover { color:var(--gold-light); }
.page-hero-content h1 { font-size:clamp(36px,6vw,68px); font-weight:900; color:var(--white); line-height:1.1; margin-bottom:14px; }
.page-hero-content > p { font-size:18px; color:rgba(255,255,255,.75); line-height:1.7; max-width:560px; }

.btn-primary { background:var(--dark); color:var(--white); padding:13px 30px; border-radius:var(--radius); font-weight:600; font-size:15px; font-family:inherit; transition:all .3s; display:inline-flex; align-items:center; gap:8px; cursor:pointer; border:none; }
.btn-primary:hover { background:var(--gold); color:var(--dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(184,149,42,.3); }
.btn-outline { background:transparent; color:var(--dark); padding:13px 30px; border-radius:var(--radius); font-weight:600; font-size:15px; font-family:inherit; border:2px solid var(--border); transition:all .3s; display:inline-flex; align-items:center; gap:8px; cursor:pointer; }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

.fade-up { opacity:0; transform:translateY(36px); transition:opacity .7s ease,transform .7s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

.cta-banner { position:relative; padding:110px 40px; text-align:center; overflow:hidden; }
.cta-banner-bg { position:absolute; inset:0; }
.cta-banner-bg img { width:100%; height:100%; object-fit:cover; }
.cta-banner-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(15,20,25,.93) 0%,rgba(184,149,42,.25) 100%); }
.cta-banner-content { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.cta-banner-content h2 { font-size:clamp(30px,5vw,52px); font-weight:900; color:var(--white); margin-bottom:18px; line-height:1.2; }
.cta-banner-content p  { color:rgba(255,255,255,.8); font-size:17px; line-height:1.7; margin-bottom:40px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-btn-gold { background:var(--gold); color:var(--dark); padding:15px 34px; border-radius:var(--radius); font-weight:700; font-size:16px; font-family:inherit; transition:all .3s; display:inline-flex; align-items:center; gap:8px; }
.cta-btn-gold:hover { background:var(--white); transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,.3); }
.cta-btn-white-outline { background:transparent; color:var(--white); padding:15px 34px; border-radius:var(--radius); font-weight:600; font-size:16px; font-family:inherit; border:2px solid rgba(255,255,255,.4); transition:all .3s; display:inline-flex; align-items:center; gap:10px; }
.cta-btn-white-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }

@media (max-width:768px) {
  body { padding-top:100px; }
  section { padding:64px 24px; }
  .page-hero { height:320px; }
  .page-hero-content { padding:36px 24px; }
  .cta-banner { padding:80px 24px; }
  .cta-actions { flex-direction:column; align-items:center; }
  .cta-btn-gold, .cta-btn-white-outline { width:100%; justify-content:center; }
}
