/* =============================================
   AZKA SABEEH PORTFOLIO — MAIN STYLES
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #0A0A0A;
  color: #F5F5F0;
  overflow-x: hidden;
}

/* =============================================
   NAV
   ============================================= */
.as-nav {
  background: #0A0A0A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 36px;
  border-bottom: 1px solid #1e1e1e;
  position: sticky;
  top: 0;
  z-index: 999;
}

.as-logo {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.as-nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
}

.as-nav-links a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.as-nav-links a:hover { color: #C0152A; }

.as-hire-btn {
  background: #C0152A;
  color: #fff;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.as-hire-btn:hover { background: #a01020; color: #fff; }

/* Mobile nav toggle */
.as-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* =============================================
   HERO
   ============================================= */
.as-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid #1e1e1e;
}

.as-hero-left {
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.as-badge {
  background: #1e0508;
  color: #e06070;
  font-size: 11px;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid #C0152A66;
  display: inline-block;
  margin-bottom: 18px;
  width: fit-content;
}

.as-hero-h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 14px;
}

.as-hero-h1 span { color: #C0152A; }

.as-hero-sub {
  color: #999;
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 320px;
}

.as-hero-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.as-btn-red {
  background: #C0152A;
  color: #fff;
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.as-btn-red:hover { background: #a01020; color: #fff; }

.as-btn-ghost {
  background: transparent;
  color: #ccc;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #333;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.as-btn-ghost:hover { border-color: #C0152A; color: #fff; }

.as-stats { display: flex; gap: 26px; }

.as-stat-num {
  color: #C0152A;
  font-size: 22px;
  font-weight: 800;
}

.as-stat-lbl {
  color: #666;
  font-size: 10px;
  margin-top: 3px;
}

.as-hero-img {
  overflow: hidden;
  background: #0d0d0d;
}

.as-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* =============================================
   TICKER
   ============================================= */
.as-ticker {
  background: #C0152A;
  padding: 11px 0;
  overflow: hidden;
}

.as-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: astick 28s linear infinite;
}

@keyframes astick {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.as-t-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

.as-t-sep { color: #ffffff55; font-size: 14px; }

/* =============================================
   ABOUT
   ============================================= */
.as-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #1e1e1e;
}

.as-about-img {
  background: #0d0d0d;
  min-height: 380px;
  overflow: hidden;
}

.as-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.as-about-right {
  padding: 48px 36px;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.as-section {
  padding: 48px 36px;
  border-bottom: 1px solid #1e1e1e;
}

.as-section-dark {
  background: #0d0d0d;
}

.as-eyebrow {
  font-size: 10px;
  color: #C0152A;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-weight: 700;
}

.as-sec-h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 5px;
}

.as-sec-h2-gap {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.as-red-bar {
  width: 36px;
  height: 3px;
  background: #C0152A;
  border-radius: 2px;
  margin: 10px 0 16px;
}

.as-about-p {
  color: #aaa;
  font-size: 12.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

/* =============================================
   CHIPS
   ============================================= */
.as-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.as-chip {
  background: #161616;
  border: 1px solid #2a2a2a;
  color: #bbb;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
}

.as-chip-r {
  background: #1e0508;
  border: 1px solid #C0152A55;
  color: #e06070;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* =============================================
   CARDS (shared)
   ============================================= */
.as-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 18px 16px;
  transition: border-color 0.2s;
}

.as-card:hover { border-color: #C0152A55; }

.as-card-ico {
  width: 32px;
  height: 32px;
  background: #1e0508;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.as-card-ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #C0152A;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.as-card-title {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 5px;
}

.as-card-desc {
  color: #666;
  font-size: 11px;
  line-height: 1.65;
}

/* =============================================
   GRIDS
   ============================================= */
.as-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.as-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* =============================================
   PORTFOLIO / RESULTS
   ============================================= */
.as-niche-tag {
  background: #1e0508;
  color: #e06070;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 7px;
  font-weight: 500;
}

.as-niche-title {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.as-niche-sub {
  color: #555;
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.as-gsc-box {
  background: #161616;
  border: 1px dashed #252525;
  border-radius: 6px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e2e2e;
  font-size: 10px;
  gap: 6px;
}

/* =============================================
   FAQ
   ============================================= */
.as-faq-q {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.as-faq-a {
  color: #666;
  font-size: 11px;
  line-height: 1.7;
}

/* =============================================
   CONTACT
   ============================================= */
.as-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  margin-top: 22px;
}

.as-c-info-p {
  color: #aaa;
  font-size: 12.5px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.as-c-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 12px;
}

.as-c-row svg {
  flex-shrink: 0;
  color: #C0152A;
}

.as-cform {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 26px;
}

.as-f-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.as-fg { margin-bottom: 10px; }

.as-fl {
  font-size: 10px;
  color: #999;
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.as-fi {
  width: 100%;
  background: #161616;
  border: 1px solid #252525;
  border-radius: 6px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.as-fi::placeholder { color: #333; }
.as-fi:focus { border-color: #C0152A; }

.as-fsel {
  width: 100%;
  background: #161616;
  border: 1px solid #252525;
  border-radius: 6px;
  padding: 9px 12px;
  color: #888;
  font-size: 12px;
  outline: none;
}

.as-fta {
  width: 100%;
  background: #161616;
  border: 1px solid #252525;
  border-radius: 6px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  outline: none;
  resize: none;
  height: 82px;
  transition: border-color 0.2s;
}

.as-fta::placeholder { color: #333; }
.as-fta:focus { border-color: #C0152A; }

.as-fsub {
  width: 100%;
  background: #C0152A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.as-fsub:hover { background: #a01020; }

/* =============================================
   CTA BANNER
   ============================================= */
.as-cta-banner {
  background: #C0152A;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.as-cta-title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.as-cta-sub {
  color: #ffbbbb;
  font-size: 12px;
  margin-top: 5px;
}

.as-cta-btn {
  background: #fff;
  color: #C0152A;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.as-cta-btn:hover { opacity: 0.9; color: #C0152A; }

/* =============================================
   FOOTER
   ============================================= */
.as-footer {
  background: #050505;
  padding: 32px 36px 0;
  border-top: 1px solid #111;
}

.as-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #111;
}

.as-f-name {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.as-f-tag {
  color: #444;
  font-size: 11px;
  line-height: 1.7;
  max-width: 190px;
}

.as-social-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}

.as-soc {
  width: 32px;
  height: 32px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.as-soc:hover { border-color: #C0152A; color: #C0152A; }

.as-soc svg { width: 15px; height: 15px; }

.as-fc-title {
  color: #666;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}

.as-flinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.as-flinks a {
  color: #444;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s;
}

.as-flinks a:hover { color: #C0152A; }

.as-fc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #444;
  font-size: 11px;
}

.as-fc-row svg { flex-shrink: 0; }

.as-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.as-f-copy { color: #2a2a2a; font-size: 10px; }

.as-f-legal { display: flex; gap: 14px; }

.as-f-legal a {
  color: #2a2a2a;
  font-size: 10px;
  text-decoration: none;
  transition: color 0.2s;
}

.as-f-legal a:hover { color: #C0152A; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .as-hero { grid-template-columns: 1fr; }
  .as-hero-img { min-height: 300px; }
  .as-about { grid-template-columns: 1fr; }
  .as-about-img { min-height: 280px; }
  .as-grid-3 { grid-template-columns: 1fr 1fr; }
  .as-contact-wrap { grid-template-columns: 1fr; }
  .as-footer-grid { grid-template-columns: 1fr 1fr; }
  .as-cta-banner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .as-nav { padding: 12px 20px; }
  .as-nav-links { display: none; }
  .as-nav-toggle { display: block; }
  .as-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #0A0A0A;
    padding: 20px;
    border-bottom: 1px solid #1e1e1e;
    z-index: 998;
    gap: 16px;
  }
  .as-hero-left { padding: 32px 20px; }
  .as-hero-h1 { font-size: 22px; }
  .as-section { padding: 36px 20px; }
  .as-about-right { padding: 32px 20px; }
  .as-grid-3 { grid-template-columns: 1fr; }
  .as-grid-2 { grid-template-columns: 1fr; }
  .as-footer-grid { grid-template-columns: 1fr; }
  .as-f-row2 { grid-template-columns: 1fr; }
  .as-footer { padding: 24px 20px 0; }
  .as-cta-banner { padding: 24px 20px; }
}
