/* Brozam Media – Professional Agency Style (Flyweb-inspired layout, original colors) */
:root {
  --primary: #1a237e;
  --primary-dark: #0d1642;
  --accent: #7c4dff;
  --accent-light: #b388ff;
  --orange: #ff6d00;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e5e7eb;
  --success: #10b981;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.6px;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 77, 255, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: #ff8a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 109, 0, 0.35);
}
.btn-white {
  background: #fff;
  color: var(--primary-dark);
}
.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO (Flyweb-style centered) ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(13,22,66,0.88) 0%, rgba(26,35,126,0.82) 50%, rgba(15,23,42,0.9) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(124,77,255,0.25) 0%, transparent 55%);
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(124, 77, 255, 0.12);
  top: -120px; right: -80px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255, 109, 0, 0.08);
  bottom: 60px; left: -60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1.2px;
}
.hero h1 .highlight { color: var(--orange); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-bar .stat h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.hero-stats-bar .stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Floating service strip under hero (Flyweb style) */
.hero-services {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  margin-bottom: 20px;
}
.hero-services-inner {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.hero-service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.hero-service-item:last-child { border-right: none; }
.hero-service-item:hover { background: #fafafa; }
.hero-service-item .hs-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
}
.hero-service-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.hero-service-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ===== SECTIONS ===== */
section { padding: 90px 0; }
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header .label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.6px;
  line-height: 1.25;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card > p {
  color: var(--text-light);
  font-size: 0.94rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-card ul { margin-bottom: 22px; }
.service-card li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 5px 0 5px 22px;
  position: relative;
}
.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.service-card .link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}
.service-card .link:hover { color: var(--primary); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content .label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.about-content > p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-item .check {
  width: 24px; height: 24px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.about-visual {
  background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 18px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -25%;
  width: 70%; height: 90%;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.about-visual h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.about-visual > p {
  opacity: 0.9;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  font-size: 0.98rem;
}
.visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative; z-index: 1;
}
.visual-stat {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.visual-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.visual-stat span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.portfolio-img {
  height: 210px;
  background: linear-gradient(135deg, #1a237e, #7c4dff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.portfolio-body { padding: 24px; }
.portfolio-body .tag {
  display: inline-block;
  background: rgba(124, 77, 255, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.portfolio-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.portfolio-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.portfolio-body a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.process-step { text-align: center; position: relative; }
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
}
.process-step h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-alt); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 14px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.testimonial-card > p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.98rem;
  line-height: 1.65;
}
.testimonial-card .author { font-weight: 700; font-size: 0.95rem; }
.testimonial-card .role { color: var(--text-light); font-size: 0.82rem; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
  text-align: center;
  color: #fff;
  padding: 90px 0;
}
.cta-section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-section p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
}
.contact-info h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1.02rem;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item .icon-box {
  width: 46px; height: 46px;
  background: rgba(124, 77, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  color: var(--text-light);
  font-size: 0.94rem;
}
.contact-item a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.94rem;
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  padding: 150px 0 90px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(124, 77, 255, 0.1);
  top: -100px; right: -80px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== UTILS ===== */
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid,
  .portfolio-grid,
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-services-inner { grid-template-columns: 1fr; }
  .hero-service-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-service-item:last-child { border-bottom: none; }
  .hero-stats-bar { gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .services-grid,
  .portfolio-grid,
  .testimonial-grid,
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats-bar { flex-direction: column; gap: 18px; }
  .hero { padding: 110px 0 100px; }
  .hero-services { margin-top: -40px; }
  section { padding: 70px 0; }
  .nav { height: 70px; }
}
