/* ============================================================
   V MEDIA PRODUCTION - Main Stylesheet
   Color Scheme: Black, Red, Gray, White
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --red: #E31C23;
  --red-dark: #B31219;
  --red-light: #FF2D35;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --gray-bg: #F5F5F5;
  --gray-border: #E5E5E5;
  --white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-red: 0 4px 20px rgba(227,28,35,0.3);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray); line-height: 1.75; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-dark { background: var(--dark); }
.bg-red { background: var(--red); }
.bg-gray { background: var(--gray-bg); }
.hidden { display: none !important; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--black);
  margin-bottom: 16px;
  font-weight: 800;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(227,28,35,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; justify-content: center; }

/* ============================================================
   PROFESSIONAL HEADER — Fixed height, no layout shift
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 2px solid #f0f0f0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.14);
  border-bottom-color: rgba(227,28,35,0.15);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  height: 80px;
  line-height: 1;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.2;
  white-space: nowrap;
}
.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---- Nav Links — NO layout shift on active ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 80px;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 80px;
  padding: 0 13px;
  font-size: 0.855rem;
  font-weight: 600; /* Always 600 — never shifts */
  color: #444444;
  white-space: nowrap;
  transition: color 0.2s ease;
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 13px;
  right: 13px;
  height: 3px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--gray-bg); }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: white;
  z-index: 998;
  padding: 16px 20px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  max-height: calc(100vh - 80px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: all 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--red); background: rgba(227,28,35,0.06); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; padding: 14px; }

/* ---- Hero Sections ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, #1a0a0a 40%, #2a0808 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E31C23' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,28,35,0.15);
  border: 1px solid rgba(227,28,35,0.3);
  color: var(--red-light);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-label::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .highlight { color: var(--red); position: relative; display: inline-block; }
.hero-description { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--white); font-family: var(--font-heading); }
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-badge-text { font-size: 0.8rem; font-weight: 600; color: var(--black); line-height: 1.3; }
.hero-badge-text small { display: block; font-weight: 400; color: var(--gray); font-size: 0.7rem; }
.badge-top { top: -20px; right: -20px; }
.badge-bottom { bottom: -20px; left: -20px; }

/* ---- Two Column Layouts ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse .col-visual { order: -1; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(227,28,35,0.2); }

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(227,28,35,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--red);
}
.card h3 { font-size: 1.1rem; color: var(--black); margin-bottom: 10px; }
.card p { font-size: 0.9rem; color: var(--gray); }

/* ---- Service Cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(227,28,35,0.1), rgba(227,28,35,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }
.service-card-link i { font-size: 0.8rem; }

/* ---- Stats Section ---- */
.stats-section {
  background: var(--black);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); font-family: var(--font-heading); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--red); }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

/* ---- Process Section ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-red);
}
.process-step h4 { font-size: 1rem; color: var(--black); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--gray); }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: rgba(227,28,35,0.08);
  font-family: serif;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; color: #FFC107; margin-bottom: 16px; font-size: 0.875rem; }
.testimonial-content { font-size: 0.925rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-info {}
.testimonial-name { font-weight: 700; color: var(--black); font-size: 0.925rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--red), var(--red-dark) 60%, #8B0000 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") repeat;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.9rem; line-height: 1.75; margin-bottom: 28px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: white; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--red); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0a0a 60%, #2a0808 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E31C23' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }

/* ---- Services Page ---- */
.services-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--gray-border);
  color: var(--gray);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--red); color: var(--red); background: rgba(227,28,35,0.05); }

.service-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-border);
}
.service-category-header h2 { font-size: 1.4rem; color: var(--black); }
.service-category-badge {
  background: rgba(227,28,35,0.08);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Service Detail Card */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-header {
  background: linear-gradient(135deg, var(--black), var(--dark-2));
  padding: 24px;
  color: white;
}
.service-detail-header .service-icon { font-size: 2rem; margin-bottom: 12px; color: var(--red); }
.service-detail-header h3 { font-size: 1.1rem; color: white; margin-bottom: 4px; }
.service-detail-header p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.service-detail-body { padding: 24px; flex: 1; }
.service-benefits { margin-bottom: 16px; }
.service-benefits h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 10px; }
.benefit-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.benefit-item i { color: var(--red); font-size: 0.8rem; margin-top: 4px; flex-shrink: 0; }
.benefit-item span { font-size: 0.85rem; color: var(--gray-dark); }
.service-price-range {
  padding: 16px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-price-range .price { font-size: 1.2rem; font-weight: 700; color: var(--black); }
.service-price-range .price-label { font-size: 0.75rem; color: var(--gray); }

/* ---- About Page ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-stack { position: relative; }
.about-image-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image-overlay {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about-image-overlay .num { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.about-image-overlay .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-icon { width: 48px; height: 48px; background: rgba(227,28,35,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; color: var(--black); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--gray); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--gray-bg);
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), var(--dark-2));
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}
.team-name { font-weight: 700; color: var(--black); margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--red); font-weight: 600; margin-bottom: 12px; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a { width: 32px; height: 32px; background: var(--gray-bg); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.8rem; transition: var(--transition); }
.team-social a:hover { background: var(--red); color: white; }

/* ---- Contact Page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; }
.contact-info-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 { font-size: 1.4rem; color: white; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(227,28,35,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-detail p { font-size: 0.9rem; color: white; }
.contact-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.contact-social-links { display: flex; gap: 10px; margin-top: 28px; }
.contact-social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.contact-social-links a:hover { background: var(--red); color: white; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}
.contact-form-card h3 { font-size: 1.4rem; color: var(--black); margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group label span { color: var(--red); }
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,28,35,0.08); }
.form-input::placeholder { color: var(--gray-light); }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }


/* ---- Animate on Scroll ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ---- Admin Panel ---- */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--black);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: var(--transition);
}
.admin-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-header .logo-text { color: white; }
.admin-sidebar-header .logo-text span { color: rgba(255,255,255,0.4); }
.admin-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active { color: white; background: rgba(255,255,255,0.06); border-left-color: var(--red); }
.admin-nav-item i { width: 20px; text-align: center; font-size: 0.95rem; }
.admin-nav-section { padding: 20px 20px 8px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); font-weight: 600; }
.admin-sidebar-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.admin-user { display: flex; align-items: center; gap: 12px; }
.admin-user-avatar { width: 36px; height: 36px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: white; }
.admin-user-info { flex: 1; }
.admin-user-info .name { font-size: 0.875rem; font-weight: 600; color: white; }
.admin-user-info .role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.admin-logout { color: rgba(255,255,255,0.4); font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.admin-logout:hover { color: var(--red); }

.admin-main { margin-left: 260px; flex: 1; min-height: 100vh; background: #F8F9FA; }
.admin-topbar {
  background: white;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h1 { font-size: 1.1rem; color: var(--black); }
.admin-topbar-actions { display: flex; align-items: center; gap: 12px; }
.admin-badge { background: rgba(227,28,35,0.1); color: var(--red); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }

.admin-content { padding: 32px; }

.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}
.admin-stat-card .stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 16px; }
.admin-stat-card .stat-value { font-size: 1.8rem; font-weight: 800; color: var(--black); font-family: var(--font-heading); }
.admin-stat-card .stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

.admin-table-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  overflow: hidden;
}
.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-table-header h3 { font-size: 1rem; color: var(--black); }
table { width: 100%; border-collapse: collapse; }
table th { padding: 12px 16px; text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); background: var(--gray-bg); font-weight: 600; }
table td { padding: 14px 16px; font-size: 0.875rem; color: var(--gray-dark); border-bottom: 1px solid var(--gray-border); }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: rgba(227,28,35,0.02); }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-new { background: rgba(59,130,246,0.1); color: #2563EB; }
.status-read { background: rgba(107,114,128,0.1); color: #6B7280; }
.status-active { background: rgba(34,197,94,0.1); color: #16A34A; }
.status-inactive { background: rgba(239,68,68,0.1); color: #DC2626; }

/* Edit Forms in Admin */
.admin-form { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); }
.admin-form h3 { font-size: 1.1rem; color: var(--black); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-border); }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--black);
  transition: var(--transition);
}
.admin-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,28,35,0.06); }
.admin-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 6px; }
.admin-textarea { min-height: 100px; resize: vertical; }
.admin-toggle { display: flex; align-items: center; gap: 10px; }
.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #ccc; border-radius: 24px; transition: 0.3s; cursor: pointer; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: 0.3s; }
input:checked + .toggle-slider { background: var(--red); }
input:checked + .toggle-slider::before { transform: translateX(20px); }

/* Auth / Login ---- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), #1a0a0a 50%, #0a0a1a 100%);
  padding: 24px;
}
.auth-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-title { font-size: 1.5rem; font-weight: 800; color: var(--black); margin-bottom: 6px; text-align: center; }
.auth-subtitle { font-size: 0.9rem; color: var(--gray); text-align: center; margin-bottom: 32px; }
.auth-error {
  background: rgba(227,28,35,0.08);
  border: 1px solid rgba(227,28,35,0.2);
  color: var(--red);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 20px;
  display: none;
}
.auth-error.show { display: block; }

/* ---- Tabs ---- */
.tab-nav { display: flex; border-bottom: 2px solid var(--gray-border); margin-bottom: 32px; }
.tab-btn { padding: 12px 24px; font-size: 0.9rem; font-weight: 600; color: var(--gray); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); cursor: pointer; }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- Notification ---- */
.notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: white;
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification.show { transform: translateX(-50%) translateY(0); }
.notification.success i { color: #22C55E; }
.notification.error i { color: var(--red); }

/* ================================================================
   RESPONSIVE — Mobile First
   Breakpoints:
   1280px  Laptop
   1024px  Tablet landscape / small laptop
   768px   Tablet portrait / large phone
   576px   Large phone
   480px   Phone
   375px   Small phone
   ================================================================ */

/* ---- 1280px — Laptop ---- */
@media (max-width: 1280px) {
  .navbar-inner { padding: 0 24px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  .two-col { gap: 56px; }
}

/* ---- 1024px — Tablet landscape ---- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 48px; }
  .hero-badge { display: none; }
  .hero-stats { gap: 28px; }
}

/* ---- 768px — Tablet portrait ---- */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .section-sm { padding: 40px 0; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 0 16px; }

  /* Hero */
  .hero { min-height: auto; padding: 110px 0 56px; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-description { font-size: 1rem; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-visual { order: 0; }
  .col-visual { max-width: 480px; margin: 0 auto; width: 100%; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-quick-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* CTA */
  .cta-section { padding: 56px 0; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Admin */
  .admin-sidebar { transform: translateX(-100%); position: fixed; z-index: 200; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-content { padding: 16px; }

  /* Page hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .page-hero p { font-size: 1rem; }

  /* Misc */
  .stat-number { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .section-title { font-size: clamp(1.5rem, 4.5vw, 2rem); }
  .services-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
}

/* ---- 576px — Large phone ---- */
@media (max-width: 576px) {
  .container { padding: 0 14px; }
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .hero-label { font-size: 0.72rem; padding: 5px 12px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-label { font-size: 0.7rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { display: flex; align-items: flex-start; text-align: left; gap: 16px; }
  .process-num { width: 52px; height: 52px; font-size: 1.1rem; flex-shrink: 0; margin: 0; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-social a { width: 36px; height: 36px; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .btn { padding: 12px 20px; }

  /* Blog */
  .blog-main-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr !important; }

  /* Section */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* Admin */
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .admin-table-card { overflow-x: auto; }
  table { font-size: 0.82rem; }
}

/* ---- 480px — Phone ---- */
@media (max-width: 480px) {
  .container { padding: 0 12px; }

  /* Typography */
  .hero h1 { font-size: clamp(1.4rem, 7.5vw, 1.75rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  h3 { font-size: clamp(1.05rem, 4.5vw, 1.2rem); }

  /* Hero */
  .hero { padding: 96px 0 44px; }
  .hero-description { font-size: 0.95rem; }
  .hero-buttons .btn { font-size: 0.875rem; padding: 13px 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; letter-spacing: 1px; }

  /* Cards */
  .card { padding: 20px; }
  .service-card-body { padding: 20px; }
  .testimonial-card { padding: 20px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Admin */
  .admin-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-content { padding: 12px; }
  .admin-stat-card { padding: 16px; }
  .panel-header { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* CTA */
  .cta-section h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .cta-section p { font-size: 0.95rem; margin-bottom: 28px; }

  /* Contact */
  .contact-form-card { padding: 20px !important; }
  .quick-card { padding: 20px; }

  /* Portfolio */
  .portfolio-filters { gap: 6px; }
  .portfolio-filters .filter-btn { padding: 7px 12px; font-size: 0.78rem; }

  /* Blog */
  .article-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .blog-featured { grid-template-columns: 1fr !important; }
  .bf-content { padding: 24px 20px !important; }
  .cat-tabs { gap: 6px; padding: 16px 0 0; }
  .cat-tab { padding: 8px 14px; font-size: 0.78rem; }

  /* Page hero */
  .page-hero { padding: 96px 0 44px; }
  .page-hero h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
}

/* ---- 375px — Small phone ---- */
@media (max-width: 375px) {
  .container { padding: 0 10px; }
  .navbar-inner { padding: 0 12px; }
  .logo-text { font-size: 0.9rem; }
  .hero h1 { font-size: 1.35rem; }
  .hero-description { font-size: 0.88rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-number { font-size: 1.6rem; }
  .btn { padding: 11px 16px; font-size: 0.85rem; }
  .btn-lg { padding: 13px 18px; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.3rem; }
}
