*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red: #E50914;
  --dark: #0B0B0B;
  --dark2: #1a1a1a;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #666;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', cursive;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-red: 0 4px 20px rgba(229,9,20,0.3);
  --radius: 8px;
}
body { font-family: var(--font-sans); background: #fff; color: #111; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { color: #fff; font-size: 16px; transition: var(--transition); }
.topbar-social a:hover { opacity: 0.8; }

/* Navbar */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 12px 0;
  transition: var(--transition);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 60px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-link { color: #111; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; transition: var(--transition); padding: 4px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-cta { padding: 10px 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #111; transition: var(--transition); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; text-transform: uppercase; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: #c0070f; box-shadow: var(--shadow-red); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #111; }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-dark { background: #111; color: #fff; border-color: #111; }
.btn-dark:hover { background: #333; }

/* Section titles */
.section-label { display: inline-block; color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-sans); font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title span, .section-title .red { color: var(--red); }
.section-subtitle { color: var(--gray); font-size: 16px; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0B0B0B 0%, #1a0000 60%, #0B0B0B 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.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='%23E50914' 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");
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-label { display: inline-block; background: var(--red); color: #fff; padding: 6px 16px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 4px; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(60px, 8vw, 100px); line-height: 1; color: #fff; margin-bottom: 8px; }
.hero-title .red { color: var(--red); display: block; }
.hero-tagline { color: #ccc; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.hero-desc { color: #aaa; font-size: 15px; margin-bottom: 30px; line-height: 1.7; max-width: 500px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-feature { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 8px 14px; border-radius: 20px; color: #ddd; font-size: 13px; backdrop-filter: blur(4px); }
.hero-feature i { color: var(--red); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-broadcast-card { background: rgba(26,0,0,0.8); border: 2px solid var(--red); border-radius: 16px; padding: 40px; text-align: center; backdrop-filter: blur(10px); box-shadow: var(--shadow-red), inset 0 0 40px rgba(229,9,20,0.05); }
.hero-broadcast-card i { font-size: 80px; color: var(--red); display: block; margin-bottom: 16px; }
.live-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.live-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.onair-text { color: #fff; font-family: var(--font-display); font-size: 32px; letter-spacing: 4px; }

/* Page Hero */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 2px;
}
.page-hero p {
  color: #aaa;
  margin-top: 10px;
}

/* Stats Bar */
.stats-bar { background: #fff; padding: 40px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 20px; }
.stat-icon { font-size: 28px; color: var(--red); margin-bottom: 10px; }
.stat-number { font-family: var(--font-display); font-size: 48px; color: #111; line-height: 1; }
.stat-label { color: var(--gray); font-size: 14px; margin-top: 6px; }

/* Services */
.services-section { background: #fff; padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.service-card { background: var(--dark2); border-radius: var(--radius); padding: 28px; transition: var(--transition); border: 1px solid #2a2a2a; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-red); border-color: var(--red); }
.service-card-icon { width: 52px; height: 52px; background: rgba(229,9,20,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card-icon i { font-size: 22px; color: var(--red); }
.service-card-title { color: #fff; font-weight: 700; font-size: 17px; margin-bottom: 12px; }
.service-card-list { list-style: none; }
.service-card-list li { color: #aaa; font-size: 13px; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.service-card-list li::before { content: '✓'; color: var(--red); font-weight: 700; }
.services-cta { text-align: center; margin-top: 40px; }

/* Packages */
.packages-section { background: var(--gray-light); padding: 80px 0; }
.packages-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 30px; margin-top: 50px; align-items: start; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 2px solid #e0e0e0; position: relative; transition: var(--transition); }
.package-card.popular { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.02); }
.package-card:not(.popular):hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-red); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #111; color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.package-name { font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.package-tagline { font-size: 13px; opacity: 0.7; margin-bottom: 20px; }
.package-price { font-family: var(--font-display); font-size: 52px; line-height: 1; margin-bottom: 4px; }
.package-price-note { font-size: 12px; opacity: 0.7; margin-bottom: 24px; }
.package-features { list-style: none; margin-bottom: 28px; }
.package-features li { padding: 8px 0; font-size: 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.popular .package-features li { border-bottom-color: rgba(255,255,255,0.15); }
.package-features li i { color: var(--red); font-size: 14px; }
.popular .package-features li i { color: #fff; }
.package-card.popular .btn-primary { background: #fff; color: var(--red); border-color: #fff; }
.package-card.popular .btn-primary:hover { background: #f0f0f0; }
.diff-card { background: var(--dark2); border-radius: var(--radius); padding: 28px; color: #fff; }
.diff-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: #fff; }
.diff-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.diff-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(229,9,20,0.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.diff-icon i { color: var(--red); font-size: 14px; }
.diff-text h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.diff-text p { font-size: 12px; color: #888; }
.diff-cta { margin-top: 24px; }

/* Portfolio */
.portfolio-section { background: #fff; padding: 80px 0; }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: #1a1a1a; cursor: pointer; }
.portfolio-item video { width: 100%; height: 100%; object-fit: cover; }
.portfolio-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 16px; }
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-title { color: #fff; font-weight: 700; font-size: 14px; }
.portfolio-item-tag { color: var(--red); font-size: 12px; font-weight: 600; text-transform: uppercase; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab { padding: 8px 20px; border-radius: 24px; border: 2px solid #e0e0e0; background: #fff; color: #666; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.filter-tab.active, .filter-tab:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Blog */
.blog-section { background: var(--gray-light); padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-red); }
.blog-img { height: 200px; background: linear-gradient(45deg, #111, #333); }
.blog-content { padding: 24px; }
.blog-date { color: var(--red); font-size: 12px; font-weight: 600; margin-bottom: 8px; display: block; }
.blog-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; color: #111; }
.blog-excerpt { color: var(--gray); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.blog-read-more { font-size: 14px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.blog-read-more:hover { color: #c0070f; }

/* Testimonials */
.testimonials-section { background: var(--gray-light); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--red); }
.testimonial-stars { color: #ffc107; font-size: 16px; margin-bottom: 14px; }
.testimonial-text { color: #444; font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-role { color: var(--gray); font-size: 13px; }

/* FAQ */
.faq-section { background: #fff; padding: 80px 0; }
.faq-grid { max-width: 800px; margin: 50px auto 0; }
.faq-item { border: 1px solid #e0e0e0; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 15px; background: #fff; transition: var(--transition); }
.faq-question:hover { background: #fef5f5; color: var(--red); }
.faq-question.open { background: var(--red); color: #fff; }
.faq-question i { transition: var(--transition); font-size: 14px; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 18px 24px; color: #555; font-size: 14px; line-height: 1.7; background: #fafafa; border-top: 1px solid #e0e0e0; }
.faq-answer.open { display: block; }

/* CTA Banner (Hindi + English) */
.cta-banner { background: var(--dark); padding: 60px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-left { display: flex; gap: 20px; align-items: flex-start; }
.cta-trophy { font-size: 48px; color: #ffc107; flex-shrink: 0; }
.cta-hindi { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-hindi-sub { color: #aaa; font-size: 15px; margin-bottom: 20px; }
.cta-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: #ccc; font-size: 13px; }
.trust-item i { color: var(--red); }
.cta-right { text-align: center; }
.cta-right h3 { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.cta-right p { color: #aaa; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact Page */
.contact-section { background: var(--gray-light); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 50px; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #333; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e0e0e0; border-radius: var(--radius); font-size: 14px; font-family: var(--font-sans); transition: var(--transition); background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,9,20,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.info-card h4 { font-weight: 700; margin-bottom: 16px; font-size: 16px; border-bottom: 2px solid var(--red); padding-bottom: 8px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.info-icon { width: 38px; height: 38px; min-width: 38px; background: rgba(229,9,20,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.info-icon i { color: var(--red); font-size: 16px; }
.info-text p:first-child { font-weight: 600; font-size: 14px; }
.info-text p:last-child { color: var(--gray); font-size: 13px; }
.success-message { display: none; background: #e8f5e9; border: 1px solid #4caf50; border-radius: var(--radius); padding: 16px; margin-bottom: 20px; color: #2e7d32; font-weight: 600; }

/* Admin Panel */
.admin-body { background: var(--gray-light); min-height: 100vh; }
.admin-header { background: var(--dark); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.admin-header-brand { display: flex; align-items: center; gap: 12px; }
.admin-header-brand img { height: 48px; }
.admin-header-brand span { color: #fff; font-weight: 700; font-size: 16px; }
.admin-main { padding: 32px 24px; max-width: 1400px; margin: 0 auto; }
.admin-login { display: flex; justify-content: center; align-items: center; min-height: 80vh; }
.admin-login-card { background: #fff; border-radius: 12px; padding: 48px; max-width: 420px; width: 100%; box-shadow: var(--shadow); text-align: center; }
.admin-login-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.admin-login-card p { color: var(--gray); margin-bottom: 28px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-top: 4px solid var(--red); }
.admin-stat-card .number { font-family: var(--font-display); font-size: 40px; color: var(--red); }
.admin-stat-card .label { color: var(--gray); font-size: 13px; }
.admin-table-wrap { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); overflow-x: auto; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.admin-search { padding: 10px 16px; border: 1.5px solid #e0e0e0; border-radius: var(--radius); font-size: 14px; width: 300px; }
.admin-actions-bar { display: flex; gap: 10px; }
.admin-btn { padding: 10px 20px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.admin-btn-primary { background: var(--red); color: #fff; }
.admin-btn-green { background: #4caf50; color: #fff; }
.admin-btn-gray { background: #666; color: #fff; }
.admin-btn-danger { background: #ff5252; color: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
table th { background: #f0f0f0; padding: 12px 14px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: #555; }
table td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
tr.status-new { background: #fff; }
tr.status-contacted { background: #f1f8e9; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; }
.badge-new { background: #fff3e0; color: #e65100; }
.badge-contacted { background: #e8f5e9; color: #2e7d32; }

/* Footer */
.footer { background: #111; color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 80px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #999; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-links h4, .footer-services h4, .footer-contact h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-links ul, .footer-services ul { list-style: none; }
.footer-links li, .footer-services li { margin-bottom: 10px; font-size: 14px; color: #999; }
.footer-links a { color: #999; transition: var(--transition); }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact p { font-size: 14px; color: #999; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--red); margin-top: 3px; }
.footer-contact a { color: #999; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #222; padding: 20px 0; text-align: center; font-size: 13px; color: #666; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 9999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 1024px) {
  .packages-layout { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { font-size: 11px; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .topbar-social span { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 48px; }
  .section-title { font-size: 28px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
