/* ========================================
   Base & Theme
======================================== */

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f7f9;
  --color-surface-alt: #fff7f0;
  --color-primary: #ff7a18;
  --color-primary-soft: #ffe0c2;
  --color-primary-softer: #fdf5ee;
  --color-primary-gradient: linear-gradient(135deg, #ff7a18, #ffb347);
  --color-text: #232323;
  --color-text-muted: #6b6b6f;
  --color-border: #e2e2e8;
  --color-wa: #25d366;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: min(100% - 3rem, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 4rem 0 4.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-header.left {
  text-align: left;
  margin-inline: 0;
}

.section-header h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* ========================================
   Header
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 226, 232, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.brand-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background-image: var(--color-primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(255, 122, 24, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav a:hover {
  color: var(--color-text);
}

.header-cta {
  flex-shrink: 0;
}

/* ========================================
   Buttons
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background-image: var(--color-primary-gradient);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(255, 122, 24, 0.55);
}

.btn-secondary {
  background: var(--color-surface-alt);
  color: var(--color-text);
  border-color: var(--color-primary-soft);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: #fffaf4;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary-soft);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: #fffaf4;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(226, 226, 232, 0.9);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
}

.btn-whatsapp {
  background: var(--color-wa);
  color: #ffffff;
  border-color: #1ebe5a;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45);
}

.btn.full-width {
  width: 100%;
}

/* ========================================
   Hero
======================================== */

.hero {
  padding: 4rem 0 3.5rem;
  /* Softer background, reduced gradient feel */
  background: radial-gradient(circle at top left, #fff5ea, #ffffff 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.8rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 122, 24, 0.06);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.hero .highlight {
  background-image: var(--color-primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-media {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.media-placeholder {
  border-radius: var(--radius-lg);
  
  background: #fffaf4;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.media-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder-lg {
  min-height: 320px;
}

/* ========================================
   Services
======================================== */

.section-services {
  background: var(--color-bg);
  
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  background-color: rgba(255, 166, 0, 0.05);
  padding: 1em;
  border-radius: 2em;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}



/* ========================================
   Past Work
======================================== */

.section-work {
  background: var(--color-bg);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.work-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(255, 122, 24, 0.5);
}

.work-image-placeholder {
  height: 170px;
  background: #fdf5ee;
  border-bottom: 1px dashed var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.work-image-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-body {
  padding: 1.1rem 1.25rem 1.2rem;
}

.work-body h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.work-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.work-result {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}


/* ========================================
   Tools We Use
======================================== */

.section-tools {
  background: var(--color-primary-softer);
  
}

.tools-grid {
  display: grid;
  /* 6 columns on larger screens */
  grid-template-columns: repeat(6, 90px);
  gap: 1rem 1.5rem;
  justify-content: center;  /* center the grid block */
  justify-items: center;     /* center items in their cells */
}

/* Optional: better layout on smaller screens */
@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(3, 80px);
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: repeat(2, 80px);
  }
}

.tool-logo {
  width: 90px;
  height: 90px;
  border-radius: 1.1rem;
  border: 1px dashed var(--color-border);
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    background var(--transition-fast);
  position: relative;
}

/* subtle tooltip-like label from data-tool (optional if you want) */
.tool-logo::after {
  content: attr(data-tool);
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.tool-logo-inner {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.tool-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.4);
  background: #fffaf4;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}


/* ========================================
   About & Team
======================================== */

.section-about {
  background: var(--color-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: center;
}

.about-list {
  list-style: none;
  margin-top: 1rem;
}

.about-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.93rem;
  color: var(--color-text-muted);
}

.about-list li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  left: 0.2rem;
  top: 0.6rem;
  background-image: var(--color-primary-gradient);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid var(--color-border);
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(255, 122, 24, 0.45);
}

.team-photo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3f3f7;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  overflow: hidden;
}

.team-photo-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-placeholder #razzaq-image{
  width: 90%;
  height: 150%;
  object-fit: cover;
}

.team-body h3 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ========================================
   Contact
======================================== */

.section-contact {
  background: #fff7f0;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-wrapper,
.contact-details {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 550;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.7rem;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.25);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.contact-lines .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.1rem;
}

.contact-link {
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--color-primary);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ========================================
   Footer
======================================== */

.site-footer {
  border-top: 1px solid rgba(226, 226, 232, 0.9);
  padding: 1.4rem 0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-secondary {
  font-style: italic;
}

/* ========================================
   Floating WhatsApp Button
======================================== */

.whatsapp-floating {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--color-wa);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 40;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  background: #1ebe5a;
}

.wa-icon {
  font-size: 1rem;
}

.wa-text {
  letter-spacing: 0.01em;
}

/* ========================================
   Animations (elements tagged with .animate-fade-up)
======================================== */

/* ========================================
   Responsive
======================================== */

@media (max-width: 900px) {
  .hero-inner,
  .results-inner,
  .about-inner,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-media {
    order: -1;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    display: none; /* simple mobile for now */
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding-inline: 1.2rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .contact-form-wrapper,
  .contact-details {
    padding: 1.3rem 1.2rem;
  }

  .work-card {
    border-radius: 1.1rem;
  }
}
