/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-card2: #222222;
  --yellow: #FFD700;
  --yellow-light: #FFE55C;
  --white: #ffffff;
  --gray: #aaaaaa;
  --border: #2e2e2e;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ===== UTILITY ===== */
.yellow { color: var(--yellow); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(13,13,13,0.97);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Logo: RJ in yellow outline, Navneet in white */
.logo-rj {
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  font-weight: 800;
  margin-right: 4px;
}
.logo-name {
  color: var(--white);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--yellow);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px; left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--gray) !important;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover {
  background: rgba(255,215,0,0.08);
  color: var(--yellow) !important;
}
.dropdown-menu li a::after { display: none !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  padding: 20px 6%;
  position: fixed;
  top: 73px; left: 0; right: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.95rem;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu.open { display: flex; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  overflow: hidden;
  padding-top: 73px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 60px 6%;
}
.hero-text {
  text-align: left;
}
.hero-subtitle {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-rj {
  color: transparent;
  -webkit-text-stroke: 3px var(--yellow);
}
.hero-navneet {
  color: var(--white);
}
.hero-tagline {
  color: var(--gray);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.hero-img {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(255,215,0,0.15));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* BUTTONS */
.btn-primary {
  background: var(--yellow);
  color: #000;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}
.btn-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 11px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-2px);
}
.full-width { width: 100%; text-align: center; }

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: var(--bg-card2); }
.stat-box i {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 12px;
}
.stat-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}
.stat-box p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 90px 6%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.1);
}
.svc-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .svc-img-wrap img {
  transform: scale(1.06);
}
.svc-card-body {
  padding: 24px 24px 28px;
}
.svc-card-body i {
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 12px;
}
.svc-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.svc-card-body p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.7;
}

/* ===== PODCAST SECTION ===== */
.podcast-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 90px 6%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.podcast-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.podcast-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.podcast-topics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.podcast-topics li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--white);
}
.podcast-topics li i { color: var(--yellow); }

.podcast-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.podcast-cover-img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  border: 2px solid rgba(255,215,0,0.25);
  box-shadow: 0 0 60px rgba(255,215,0,0.15), 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.podcast-cover-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 80px rgba(255,215,0,0.25), 0 25px 70px rgba(0,0,0,0.6);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 6%;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d, #1a1200, #0d0d0d);
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  margin-top: 73px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.banner-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.banner-content p {
  color: var(--gray);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 90px 6%;
  align-items: center;
}
.about-img-box {
  display: flex;
  justify-content: center;
}
.about-photo-frame {
  position: relative;
  display: inline-block;
}
.about-photo-img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  border: 2px solid rgba(255,215,0,0.2);
  box-shadow: 0 0 60px rgba(255,215,0,0.12), 0 20px 50px rgba(0,0,0,0.5);
  display: block;
}
.about-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,13,13,0.92);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 10px;
  padding: 10px 22px;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.about-photo-badge .logo-rj,
.about-photo-badge .logo-name {
  font-size: 1.2rem;
}
.badge-role {
  display: block;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 3px;
  font-weight: 400;
}
.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-role {
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text p strong { color: var(--white); }

/* ===== NAVNEET SHOW SECTION ===== */
.navneet-show-section {
  padding: 90px 6%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.show-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.show-description p {
  color: var(--gray);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 32px;
}
.show-description p strong { color: var(--white); }
.show-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.topic-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== SOCIAL SECTION (About Page) ===== */
.social-section {
  padding: 90px 6%;
}
.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 20px;
  text-align: center;
  transition: all 0.3s;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,255,255,0.05);
}
.social-card i {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.social-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.social-card p {
  color: var(--gray);
  font-size: 0.85rem;
}
.social-card.instagram { border-color: #c13584; }
.social-card.instagram i { color: #e1306c; }
.social-card.facebook { border-color: #1877f2; }
.social-card.facebook i { color: #1877f2; }
.social-card.youtube { border-color: #ff0000; }
.social-card.youtube i { color: #ff0000; }
.social-card.linkedin { border-color: #0077b5; }
.social-card.linkedin i { color: #0077b5; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 90px 6%;
  align-items: start;
}
.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: var(--yellow); }
.info-card i {
  font-size: 1.3rem;
  color: var(--yellow);
  margin-top: 2px;
  min-width: 20px;
}
.info-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 4px;
}
.info-card p, .info-card a {
  font-size: 0.88rem;
  color: var(--gray);
}
.info-card a:hover { color: var(--yellow); }

.contact-form-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group select option { background: var(--bg-card); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}
.form-group textarea { resize: vertical; }

.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--yellow);
  font-size: 0.92rem;
  margin-top: 16px;
}
.success-msg i { font-size: 1.2rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 6% 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-links h4,
.footer-social h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--yellow);
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--yellow); }
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 40px; height: 40px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  color: var(--gray);
  font-size: 0.82rem;
}

/* ===== SVG ICON HELPERS ===== */
.nav-icon-svg {
  width: 12px;
  height: 12px;
  filter: invert(60%) sepia(0%) saturate(0%) brightness(90%);
  vertical-align: middle;
  margin-left: 4px;
  transition: filter 0.3s;
}
.nav-links li a:hover .nav-icon-svg,
.nav-links li a.active .nav-icon-svg {
  filter: invert(85%) sepia(80%) saturate(600%) hue-rotate(5deg) brightness(105%);
}
.drop-icon-svg {
  width: 14px;
  height: 14px;
  filter: invert(60%) sepia(0%) saturate(0%) brightness(90%);
  vertical-align: middle;
  flex-shrink: 0;
  transition: filter 0.3s;
}
.dropdown-menu li a:hover .drop-icon-svg {
  filter: invert(85%) sepia(80%) saturate(600%) hue-rotate(5deg) brightness(105%);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 90px 6%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 9px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-card2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.overlay-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.overlay-content p {
  font-size: 0.8rem;
  color: #cccccc;
  margin-bottom: 12px;
}
.gallery-tag {
  background: var(--yellow);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .podcast-section { grid-template-columns: 1fr; }
  .podcast-img-box { order: -1; }
  .about-section { grid-template-columns: 1fr; text-align: center; }
  .about-img-box { justify-content: center; }
  .about-photo-badge { left: 50%; transform: translateX(-50%); }
  .contact-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 80px 6% 40px; }
  .hero-text { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-photo-wrap { order: -1; }
  .hero-img { max-width: 280px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
