/*
 * style.css — Shared stylesheet for Amaan Parking Management System
 * Location: /amaan_pages/assets/css/style.css
 */


/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(210, 40%, 10%);
  --primary: hsl(200, 65%, 48%);
  --secondary: hsl(205, 60%, 35%);
  --muted: hsl(210, 20%, 96%);
  --muted-foreground: hsl(210, 15%, 45%);
  --brand-light: hsl(197, 80%, 55%);
  --brand-dark: hsl(205, 65%, 32%);
  --sidebar-bg: hsl(205, 65%, 32%);
  --sidebar-fg: white;
  --sidebar-accent: hsl(200, 60%, 40%);
  --payment-bg: hsl(205, 65%, 32%);
  --payment-accent: hsl(200, 60%, 40%);
  --radius: 0.75rem;
}


html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Open Sans', sans-serif; background-color: var(--background); color: var(--foreground); line-height: 1.6; margin: 0; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }


.hidden-text { position: absolute; left: -9999px; }


/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 50; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.sidebar-overlay.active { opacity: 1; visibility: visible; }


/* ===== LEFT SIDEBAR ===== */
.sidebar { position: fixed; top: 0; left: 0; height: 100%; width: 280px; background: var(--sidebar-bg); color: var(--sidebar-fg); z-index: 60; transform: translateX(-100%); transition: transform 0.35s ease; display: flex; flex-direction: column; overflow-y: auto; }
.sidebar.open { transform: translateX(0); }


.sidebar-header { background: white; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 1rem; display: flex; flex-direction: column; align-items: stretch; position: relative; }
.sidebar-logo-container { position: relative; width: 100%; padding-top: 100%; background: white; border-radius: 0.5rem; overflow: hidden; }
.sidebar-logo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; padding: 1rem; }


.sidebar-close { background: transparent; border: none; cursor: pointer; padding: 0.5rem; border-radius: 0.375rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; position: absolute; top: 0.5rem; right: 0.5rem; z-index: 1; color: var(--sidebar-bg); }
.sidebar-close svg { width: 1.5rem; height: 1.5rem; }
.sidebar-close:hover { background: rgba(0,0,0,0.1); }


.sidebar-nav { flex: 1; padding: 1.5rem 1rem; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 0.6rem; }
.sidebar-nav a { display: flex; align-items: center; gap: 1.1rem; padding: 1rem 1.3rem; border-radius: 0.6rem; color: white; font-weight: 500; transition: background 0.2s; cursor: pointer; }
.sidebar-nav a:hover, .sidebar-nav a.nav-active { background: var(--sidebar-accent); }
.sidebar-nav svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }


.sidebar-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.95rem; }
.sidebar-footer a { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 1rem; transition: color 0.2s; }
.sidebar-footer a:hover { color: white; }
.sidebar-footer svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }


/* ===== RIGHT SIDEBAR (Payment) ===== */
.payment-sidebar { position: fixed; top: 0; right: 0; height: 100%; width: 380px; background: linear-gradient(180deg, var(--payment-bg) 0%, var(--payment-accent) 100%); color: white; z-index: 60; transform: translateX(100%); transition: transform 0.35s ease; display: flex; flex-direction: column; overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,0.2); }
.payment-sidebar.open { transform: translateX(0); }


.payment-header { background: rgba(0,0,0,0.15); padding: 1.75rem 1.5rem; display: flex; flex-direction: row; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.15); }
.payment-title { display: flex; align-items: center; gap: 0.875rem; flex: 1; }
.payment-title svg { width: 2rem; height: 2rem; flex-shrink: 0; }
.payment-title h3 { font-size: 1.375rem; font-weight: 700; margin: 0; }


.payment-close { background: transparent; border: none; cursor: pointer; padding: 0.5rem; border-radius: 0.375rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; color: white; }
.payment-close svg { width: 1.5rem; height: 1.5rem; }
.payment-close:hover { background: rgba(0,0,0,0.2); }


.payment-nav { flex: 1; padding: 1.5rem; }
.payment-options { display: flex; flex-direction: column; gap: 1.25rem; }


.payment-card { background: white; border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; gap: 1.25rem; transition: all 0.3s; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-decoration: none; color: var(--foreground); }
.payment-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }


.payment-card-logo { width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0.75rem; background: rgba(0,0,0,0.69); backdrop-filter: blur(8px); border-radius: 0.75rem; }
.payment-card-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); }
.payment-card-logo svg { width: 40px; height: 40px; color: white; }


.payment-card-content { flex: 1; }
.payment-card-content h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.375rem; color: var(--foreground); }
.payment-card-content p { font-size: 0.875rem; color: var(--muted-foreground); margin: 0; }


.payment-card-arrow { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--muted); flex-shrink: 0; transition: all 0.3s; }
.payment-card:hover .payment-card-arrow { background: linear-gradient(135deg, var(--brand-light), var(--brand-dark)); }
.payment-card-arrow svg { width: 1.25rem; height: 1.25rem; color: var(--foreground); transition: color 0.3s; }
.payment-card:hover .payment-card-arrow svg { color: white; }


.payment-footer { background: rgba(0,0,0,0.15); text-align: center; border-top: 1px solid rgba(255,255,255,0.15); padding: 1.75rem 1.5rem; }
.payment-footer-text { font-size: 0.9rem; opacity: 0.9; line-height: 1.5; margin: 0; }


/* ===== TOP HEADER ===== */
.top-header { position: fixed; top: 0; left: 0; right: 0; z-index: 45; background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }


.top-header-inner { max-width: 100%; min-height: 72px; padding: 0.875rem 1.25rem; display: flex; align-items: center; justify-content: space-between; position: relative; gap: 1rem; }
.top-header-left { display: flex; align-items: center; gap: 1rem; }


.top-logo-link { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; }
.top-header-logo { height: 44px; width: auto; display: block; }


main { padding-top: 72px; }


/* Menu button */
.menu-btn { position: static; padding: 0.875rem 1.5rem; border: none; border-radius: 0.75rem; background: linear-gradient(135deg, var(--brand-light), var(--brand-dark)); box-shadow: 0 4px 16px rgba(0,0,0,0.18); cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.75rem; color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }
.menu-btn svg { width: 1.5rem; height: 1.5rem; }
.menu-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.menu-btn:active { transform: scale(0.97); }


/* Solutions nav link */
.top-nav-link { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.75rem 1.25rem; border-radius: 0.75rem; background: white; color: var(--brand-dark); font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: all 0.25s ease; }
.top-nav-link:hover { background: var(--muted); color: var(--primary); }
.top-nav-link.active { background: linear-gradient(135deg, var(--brand-light), var(--brand-dark)); color: white; border-color: transparent; }


/* Pay Parking button */
.payment-btn { position: static; padding: 0.875rem 1.5rem; border: none; border-radius: 0.75rem; background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 16px rgba(0,0,0,0.18); cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.75rem; color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }
.payment-btn svg { width: 1.5rem; height: 1.5rem; }
.payment-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.25); background: linear-gradient(135deg, #059669, #047857); }
.payment-btn:active { transform: scale(0.97); }


/* ===== HERO ===== */
.hero { position: relative; width: 100%; line-height: 0; overflow: hidden; background: #000; }
.hero-video { display: block; width: 100%; height: calc(100vh - 72px); object-fit: cover; object-position: center top; }


.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,95,140,0.6), rgba(46,186,223,0.4)); z-index: -1; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.08; background-image: radial-gradient(circle at 50% 50%, white 1px, transparent 1px); background-size: 30px 30px; z-index: -1; }
.hero-blob-1 { position: absolute; top: 5rem; right: -5rem; width: 20rem; height: 20rem; background: rgba(46,186,223,0.2); border-radius: 50%; filter: blur(80px); z-index: -1; }
.hero-blob-2 { position: absolute; bottom: 5rem; left: -5rem; width: 25rem; height: 25rem; background: rgba(30,95,140,0.15); border-radius: 50%; filter: blur(80px); z-index: -1; }


.hero-content-wrapper { position: relative; z-index: 10; max-width: 56rem; animation: fadeIn 0.8s ease-out; }
.hero-logo { height: 8rem; width: auto; margin: 0 auto 2rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)); }
.hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1.25rem; text-shadow: 0 4px 12px rgba(0,0,0,0.6); line-height: 1.2; }
.brand-gradient-text { background: linear-gradient(1deg, var(--brand-light), white); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.125rem; max-width: 42rem; margin: 0 auto 2.5rem; opacity: 0.95; text-shadow: 0 2px 8px rgba(0,0,0,0.6); line-height: 1.6; }


.hero-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.btn-primary, .btn-secondary { padding: 1rem 2.25rem; border-radius: 0.5rem; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; transition: all 0.3s; border: none; cursor: pointer; display: inline-block; text-align: center; min-width: 200px; }
.btn-primary { background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%); color: white; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.btn-secondary { border: 2px solid white; color: white; background: transparent; }
.btn-secondary:hover { background: white; color: var(--brand-dark); }


.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; z-index: 10; }
.scroll-indicator-inner { width: 1.5rem; height: 2.5rem; border-radius: 1rem; border: 2px solid white; display: flex; align-items: flex-start; justify-content: center; padding-top: 0.5rem; }
.scroll-indicator-dot { width: 0.375rem; height: 0.75rem; border-radius: 0.5rem; background: white; animation: pulse 1.5s infinite; }


/* ===== SECTION COMMON ===== */
.section-container { max-width: 72rem; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--foreground); }
.section-header p { color: var(--muted-foreground); font-size: 1rem; max-width: 42rem; margin: 0 auto; line-height: 1.6; }


/* ===== ABOUT ===== */
.about { padding: 5rem 1.5rem; background: var(--muted); }


.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card { padding: 2rem 1.5rem; text-align: center; background: white; border-radius: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 1rem; background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%); margin: 0 auto 1.25rem; transition: transform 0.3s; }
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(5deg); }
.feature-icon svg { width: 2rem; height: 2rem; color: white; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--foreground); }
.feature-card p { color: var(--muted-foreground); font-size: 0.95rem; line-height: 1.6; }


.about-text { margin-top: 4rem; padding: 2.5rem 2rem; background: white; border-radius: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.about-text-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.about-text-inner p { margin-bottom: 1.5rem; line-height: 1.7; color: var(--foreground); }
.about-text-inner p:last-child { margin-bottom: 0; }
.about-text-inner p:first-child { font-size: 1.125rem; }
.about-text-inner strong { color: var(--primary); font-weight: 700; }
.about-services-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; text-align: left; display: inline-block; }
.about-services-list li { margin-bottom: 0.6rem; color: var(--foreground); font-weight: 600; font-size: 1rem; }
.about-services-list li::before { content: "➢ "; color: var(--primary); font-weight: 700; }


/* ===== HOME SOLUTIONS (index page) ===== */
.solutions { padding: 5rem 2.5rem; background: var(--background); }
.solutions .section-container { max-width: 100%; padding: 0 1rem; }
.solutions-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 100%; width: 100%; margin: 0 auto; padding: 0; }


.solution-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: all 0.3s; display: flex; flex-direction: column; }
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.solution-header { padding: 3rem 2rem 2rem; background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%); color: white; text-align: center; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.solution-icon { display: inline-flex; align-items: center; justify-content: center; width: 5rem; height: 5rem; border-radius: 1rem; background: rgba(255,255,255,0.2); margin-bottom: 1.5rem; }
.solution-icon svg { width: 3rem; height: 3rem; color: white; }
.solution-header h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.solution-header .subtitle { font-size: 0.95rem; opacity: 0.9; }
.solution-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.solution-body p { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1.5rem; }
.solution-features { list-style: none; margin-bottom: 1.5rem; }
.solution-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--foreground); }
.solution-features li svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }
.salaah-links { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.salaah-link { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 0.5rem; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem; text-align: center; transition: all 0.25s; cursor: pointer; }
.salaah-link-primary { background: linear-gradient(135deg, hsl(260,60%,50%), hsl(240,65%,35%)); color: white; border: none; }
.salaah-link-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(80,60,180,0.35); }
.salaah-link-secondary { background: transparent; color: hsl(260,60%,45%); border: 2px solid hsl(260,60%,50%); }
.salaah-link-secondary:hover { background: hsl(260,60%,50%); color: white; }
.salaah-link-blue { background: transparent; color: hsl(205,65%,32%); border: 2px solid hsl(205,65%,32%); }
.salaah-link-blue:hover { background: hsl(205,65%,32%); color: white; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,95,140,0.3); }


/* ===== PRODUCTS ===== */
.products { padding: 5rem 1.5rem; background: var(--muted); }


/* ===== CLIENTS ===== */
.clients { padding: 5rem 1.5rem; background: var(--background); overflow-x: hidden; }
.clients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 0 0.25rem; max-width: 72rem; margin: 0 auto; width: 100%; box-sizing: border-box; }
.client-card { background: white; border-radius: 1rem; padding: 1.25rem 0.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s; min-height: 180px; }
.client-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.client-logo { width: 100px; height: 100px; border-radius: 0.75rem; background: white; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; overflow: hidden; padding: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.client-logo:has(svg:only-child) { background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%); padding: 1.5rem; }
.client-logo svg { width: 70px; height: 70px; color: white; }
.client-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.client-name { font-weight: 600; color: var(--foreground); font-size: 1.05rem; line-height: 1.4; }


/* ===== LOCATIONS ===== */
.locations { padding: 5rem 1.5rem; background: var(--muted); }
.locations-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 56rem; margin: 0 auto; }
.location-card { border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: all 0.3s; background: white; }
.location-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.location-header { padding: 2rem 1.5rem; background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%); color: white; text-align: center; }
.location-header h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.location-header span { opacity: 0.95; font-size: 1rem; }
.location-body { padding: 2rem 1.5rem; background: white; }
.location-item { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.125rem; }
.location-item:last-child { margin-bottom: 0; }
.location-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 0.25rem; }
.location-item span, .location-item a { color: var(--foreground); font-size: 0.95rem; line-height: 1.5; }
.location-item a:hover { color: var(--primary); text-decoration: underline; }
.coming-soon { text-align: center; margin-top: 4rem; color: var(--muted-foreground); font-style: italic; font-size: 1rem; }


/* ===== SOLUTIONS PAGE (solutions.php) ===== */
.page-banner { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-light) 100%); color: white; text-align: center; padding: 4rem 1.5rem 3rem; }
.page-banner h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.page-banner p { font-size: clamp(1rem, 2vw, 1.15rem); opacity: 0.9; max-width: 600px; margin: 0 auto; }


.solutions-page { padding: 4rem 1.5rem 5rem; background: var(--background); }
.solutions-container { max-width: 1200px; margin: 0 auto; }


/* ===== ZIGZAG LAYOUT ===== */
.solutions-zigzag { display: flex; flex-direction: column; }

.sol-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.sol-row:last-child { border-bottom: none; }

/* Reverse: image goes RIGHT, content goes LEFT */
.sol-row.sol-row-reverse { flex-direction: row-reverse; }

/* Image: fixed 45% width */
.sol-row-image {
  flex: 0 0 45%;
  max-width: 45%;
}
.sol-row-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.25rem;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.sol-row-image .sol-photo-placeholder {
  width: 100%;
  height: 360px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%);
}
.sol-row-image .sol-photo-placeholder svg {
  width: 72px;
  height: 72px;
  color: rgba(255,255,255,0.6);
}

/* Content: takes remaining 55% */
.sol-row-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sol-row-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.2;
  margin: 0;
}
.sol-row-content .sol-subtitle {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.sol-row-content .sol-desc {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin: 0;
}
.sol-row-content .sol-features {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
}
.sol-row-content .sol-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}
.sol-row-content .sol-features li svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.sol-row-content .sol-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 0.25rem;
}

/* Alternating row tint */
.sol-row:nth-child(even) {
  background: rgba(0,0,0,0.015);
  border-radius: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Shared button styles (used in both sol-card and sol-row-content) */
.sol-tag { display: inline-block; padding: 0.3rem 0.85rem; border-radius: 999px; background: linear-gradient(135deg, var(--brand-light), var(--brand-dark)); color: white; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.sol-btn-primary { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem 1rem; border-radius: 0.6rem; background: linear-gradient(135deg, var(--brand-light), var(--brand-dark)); color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer; transition: all 0.25s; text-align: center; text-decoration: none; }
.sol-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.sol-btn-secondary { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem 1rem; border-radius: 0.6rem; background: transparent; color: var(--brand-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; border: 2px solid var(--brand-dark); cursor: pointer; transition: all 0.25s; text-align: center; text-decoration: none; }
.sol-btn-secondary:hover { background: var(--brand-dark); color: white; }
.sol-btn-primary svg, .sol-btn-secondary svg { width: 0.95rem; height: 0.95rem; }


/* ===== FOOTER ===== */
footer { background: var(--secondary); color: white; padding: 4rem 1.5rem 2rem; }
.footer-container { max-width: 72rem; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-col { text-align: center; }
.footer-logo { height: 4.5rem; width: auto; background: white; border-radius: 0.5rem; padding: 0.5rem; margin: 0 auto 1rem; }
.footer-col p { opacity: 0.85; font-size: 0.95rem; line-height: 1.6; }
.footer-col h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a, .footer-offices > div { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-size: 0.95rem; transition: color 0.2s; justify-content: center; }
.footer-links a:last-child, .footer-offices > div:last-child { margin-bottom: 0; }
.footer-links a:hover, .footer-offices > div:hover { color: white; }
.footer-links svg, .footer-offices svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); text-align: center; font-size: 0.875rem; opacity: 0.75; }


/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-12px); } 60% { transform: translateX(-50%) translateY(-6px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }


/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero-logo { height: 11rem; }
  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: row; justify-content: center; gap: 1.25rem; }
  .btn-primary, .btn-secondary { font-size: 1.1rem; min-width: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .section-header h2 { font-size: 2.5rem; }
  .section-header p { font-size: 1.125rem; }
  .feature-card h3 { font-size: 1.25rem; }
  .hero p { font-size: 1.25rem; }
  .hero-logo { height: 14rem; }
  .about { padding: 5rem 1.5rem; }
  .about-text { padding: 3rem; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-col { text-align: left; }
  .footer-logo { margin: 0 0 1rem; }
  .footer-links a, .footer-offices > div { justify-content: flex-start; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4rem; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .clients-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  .top-header-inner { min-height: 64px; padding: 0.75rem 1rem; }
  .top-header-left { gap: 0.5rem; }
  main { padding-top: 64px; }
  .top-logo-link { position: static; transform: none; }
  .top-header-logo { height: 34px; }
  .top-nav-link { min-height: 40px; padding: 0.55rem 0.9rem; font-size: 0.85rem; }
  .menu-btn span, .payment-btn span { display: none; }
  .menu-btn, .payment-btn { padding: 0.65rem 1rem; font-size: 0.85rem; }
  .payment-sidebar { width: 100%; }
  .payment-card { flex-direction: column; text-align: center; }
  .payment-card-logo { width: 110px; height: 110px; }
  .payment-card-arrow { transform: rotate(90deg); }
  .hero { background: #000; height: auto; }
  .hero-video { height: auto; width: 100%; object-fit: contain; object-position: center center; background: #000; }
  .hero-blob-1, .hero-blob-2 { display: none; }
  .scroll-indicator { bottom: 1.5rem; }
  .about { padding: 3rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  .solutions { padding: 3rem 1.5rem; }
  .solutions-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  /* solutions zigzag — mobile only: stack vertically */
  .sol-row,
  .sol-row.sol-row-reverse { flex-direction: column !important; gap: 1.5rem; padding: 2rem 0; }
  .sol-row-image { flex: none; max-width: 100%; width: 100%; }
  .sol-row-image img,
  .sol-row-image .sol-photo-placeholder { height: 220px; }
  .sol-row:nth-child(even) { padding-left: 0; padding-right: 0; }
  .solution-header { min-height: auto; padding: 2rem 1.5rem; }
  .solution-header h3 { font-size: 1.35rem; }
  .salaah-links { flex-direction: column; }
  .products { padding: 3rem 1.5rem; }
  .clients { padding: 3rem 1rem; }
  .clients-grid { gap: 1rem; padding: 0 0.25rem; }
  .client-card { min-height: 180px; padding: 1.25rem 0.75rem; }
  .client-logo { width: 100px; height: 100px; }
  .locations { padding: 3rem 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .page-banner { padding: 3rem 1rem 2rem; }
  .sol-row-content .sol-actions { flex-direction: column; }
}
