/* ============================================
   BRUNO MEDIA — Brand Stylesheet
   Primary Blue: #0d8bf2 (from current logo)
   Dark: #111827, Light BG: #e9eff6
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0d8bf2;
  --blue-hover: #0a73cc;
  --blue-light: #e9eff6;
  --blue-glow: rgba(13,139,242,.3);
  --dark: #111827;
  --dark-mid: #1e293b;
  --text: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(17,24,39,.07);
  --shadow-lg: 0 12px 40px rgba(17,24,39,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-light); line-height: 1.7; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: .5rem;
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- Layout --- */
.container { width: 90%; max-width: 1140px; margin: 0 auto; }
section { padding: 5rem 0; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--blue-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,24,39,.06);
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* LOGO HERE — Replace .logo-mark SVG with your actual Bruno Media logo file */
.logo-mark {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-mark .bruno-b {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}
.logo-mark .bruno-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-mark .media-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  color: var(--dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
  padding-left: 1px;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: .95rem; color: var(--text);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: .6rem 1.4rem; }
.nav-links .btn::after { display: none; }
.nav-links .btn:hover { color: var(--white); }

.nav-social { display: flex; gap: .6rem; align-items: center; }
.nav-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  transition: all var(--transition);
}
.nav-social a::after { display: none; }
.nav-social a:hover { background: var(--blue-hover); transform: scale(1.1); color: var(--white); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); margin: 5px 0;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--white);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,24,39,.85) 0%, rgba(30,41,59,.75) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&h=900&fit=crop') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,139,242,.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--blue); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; margin-bottom: 2rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(17,24,39,.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), #4dabf7);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .95rem; }

/* --- Stats --- */
.stats {
  background: var(--dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .3rem;
}

.stat-item p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(17,24,39,.05);
}

.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .5rem;
  font-family: Georgia, serif;
}

.testimonial-card p { font-size: .95rem; font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { font-weight: 600; color: var(--dark); font-size: .9rem; }
.testimonial-role { color: var(--text-light); font-size: .8rem; }

/* --- Blog Preview --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: all var(--transition);
  border: 1px solid rgba(17,24,39,.05);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card img { width: 100%; height: 200px; object-fit: cover; }

.blog-card-body { padding: 1.5rem; }
.blog-card-body .tag {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--blue); margin-bottom: .5rem;
  display: inline-block;
}
.blog-card-body .date {
  font-size: .75rem; color: var(--text-light); margin-bottom: .4rem;
  display: block;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.blog-card-body p { font-size: .9rem; }

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer a:hover { color: var(--blue); }
.footer ul li { margin-bottom: .5rem; }

.footer-brand p { font-size: .9rem; margin-top: .75rem; max-width: 280px; }

.footer-subscribe { display: flex; gap: .5rem; margin-top: .75rem; }
.footer-subscribe input {
  flex: 1; padding: .65rem 1rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--white); font-size: .9rem;
  outline: none;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,.4); }
.footer-subscribe button {
  padding: .65rem 1.2rem; border-radius: 8px;
  background: var(--blue); color: var(--white);
  border: none; cursor: pointer; font-weight: 600; font-size: .85rem;
  transition: background var(--transition);
}
.footer-subscribe button:hover { background: var(--blue-hover); }

.social-icons { display: flex; gap: .75rem; margin-top: 1rem; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 600;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
}

/* Logo in footer (light version) */
.footer .logo-mark .bruno-b,
.footer .logo-mark .bruno-text { color: var(--white); }
.footer .logo-mark .media-text { color: rgba(255,255,255,.7); }

/* --- Page Header (inner pages) --- */
.page-header {
  background:
    linear-gradient(135deg, rgba(17,24,39,.9) 0%, rgba(30,41,59,.8) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&h=900&fit=crop') center/cover no-repeat;
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-header h1 { color: var(--white); margin-bottom: .5rem; }
.page-header h1 span { color: var(--blue); }
.page-header p { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto; }

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* PHOTO HERE — replace this placeholder with Anthony's actual headshot */
.about-photo {
  width: 100%; aspect-ratio: 4/5;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-weight: 600;
  border: 2px dashed rgba(13,139,242,.25);
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center; padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,24,39,.05);
}
.value-card .value-icon {
  font-size: 2rem; margin-bottom: 1rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form label { font-weight: 600; font-size: .9rem; color: var(--dark); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid rgba(17,24,39,.15);
  border-radius: var(--radius);
  font-size: .95rem; font-family: inherit;
  transition: border var(--transition);
  background: var(--white);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--blue); }
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  padding: 1.5rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-info-card .info-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: .2rem; font-size: .95rem; }
.contact-info-card p { font-size: .9rem; }

/* --- Services Detail --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
.service-detail:nth-child(even) .service-detail-content { order: -1; }
.service-detail-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.service-detail-content p { margin-bottom: 1rem; }
.service-detail-content ul { margin-bottom: 1.5rem; }
.service-detail-content ul li {
  padding: .4rem 0; padding-left: 1.5rem;
  position: relative; font-size: .95rem; color: var(--text-light);
}
.service-detail-content ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--blue), #4dabf7);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.cta-section .btn {
  background: var(--white); color: var(--blue);
  border-color: var(--white);
}
.cta-section .btn:hover {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(17,24,39,.05);
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--blue);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  padding: .3rem 1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 600;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card h3 { margin-bottom: .5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin: 1rem 0; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-card ul { margin: 1.5rem 0; text-align: left; }
.pricing-card ul li {
  padding: .5rem 0; padding-left: 1.5rem;
  position: relative; font-size: .9rem; color: var(--text-light);
}
.pricing-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 1.5rem;
    box-shadow: var(--shadow);
  }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-buttons { flex-direction: column; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail:nth-child(even) .service-detail-content { order: 0; }
  section { padding: 3.5rem 0; }
}
