/* ============================================
   DÜĞÜN & KINA ORGANİZASYON - ANA CSS
   ============================================ */
:root {
  --primary: #e91e8c;
  --primary-dark: #c2185b;
  --secondary: #ff6b35;
  --accent: #9c27b0;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #444;
  --text-light: #777;
  --border: #eee;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ====== NAVBAR ====== */
.navbar {
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,26,46,0.97) !important;
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.brand-icon { color: var(--primary); margin-right: 6px; }
.nav-link {
  color: rgba(255,255,255,0.95) !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-link:hover { color: white !important; background: rgba(255,255,255,0.1); }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px !important;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(233,30,140,0.4);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,0.6); }
.navbar-toggler { border: none; background: none; padding: 4px 8px; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; }
.toggler-icon span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ====== HERO ====== */
.hero-section {
  min-height: 100svh;
  background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  pointer-events: none;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center bottom, rgba(233,30,140,0.15) 0%, transparent 70%),
              radial-gradient(ellipse at top right, rgba(255,107,53,0.1) 0%, transparent 60%);
}
.hero-overlay-media {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.65) 80%,
    rgba(0,0,0,0.80) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
.particle {
  position: absolute;
  background: rgba(233,30,140,0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-50px) scale(1); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 820px; margin: 0 auto; padding: 120px 20px 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233,30,140,0.35);
  border: 1px solid rgba(233,30,140,0.7);
  color: #ffffff;
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 50px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 24px rgba(0,0,0,0.6);
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 38px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; font-weight: 600; font-size: 15px;
  padding: 15px 36px; border-radius: 50px; border: none;
  box-shadow: 0 6px 25px rgba(233,30,140,0.5);
  transition: all 0.3s; text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(233,30,140,0.7); color: white; }
.btn-hero-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: white; font-weight: 600; font-size: 15px;
  padding: 14px 36px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s; text-decoration: none;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); color: white; }
.scroll-mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px; margin: 0 auto;
  display: flex; justify-content: center; padding-top: 8px;
  animation: pulse 2s infinite;
}
.scroll-dot { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%,100% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(12px); opacity: 0; } }
@keyframes pulse { 0%,100% { border-color: rgba(255,255,255,0.4); } 50% { border-color: rgba(233,30,140,0.7); } }

/* ====== STATS BAR ====== */
.stats-bar {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 0;
}
.stat-item {
  text-align: center; padding: 35px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(233,30,140,0.05); }
.stat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(233,30,140,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary);
  margin: 0 auto 12px;
}
.stat-num { font-size: 32px; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; }

/* ====== SECTIONS ====== */
.section-pad { padding: 90px 0; }
.bg-soft { background: #f8f9fb; }
.section-header { margin-bottom: 10px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 2px; background: var(--primary);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--dark);
  line-height: 1.25; margin-bottom: 16px;
}
.section-desc { font-size: 15px; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ====== SERVICE CARDS ====== */
.service-card {
  background: white; border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 75px; height: 75px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 22px;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-link { font-size: 13px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ====== PACKAGES ====== */
.package-card {
  background: white; border-radius: var(--radius);
  padding: 36px 30px; text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.35s;
  position: relative; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,0.2); }
.package-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff5fb 0%, white 30%);
}
.pkg-badge {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; font-size: 11px; font-weight: 700;
  padding: 8px 18px; border-radius: 0 0 0 16px;
}
.pkg-cat { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.package-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pkg-desc { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.pkg-price {
  font-size: 36px; font-weight: 800; color: var(--primary);
  line-height: 1; margin-bottom: 22px;
}
.pkg-price span { font-size: 22px; font-weight: 700; }
.pkg-price small { display: block; font-size: 12px; color: #999; font-weight: 400; margin-top: 4px; }
.pkg-features { list-style: none; text-align: left; margin-bottom: 28px; flex: 1; }
.pkg-features li {
  font-size: 13px; color: #555;
  padding: 7px 0; border-bottom: 1px solid #f5f6fa;
  display: flex; align-items: center; gap: 10px;
}
.pkg-features li i { color: #38a169; font-size: 12px; flex-shrink: 0; }
.pkg-btn {
  display: block; padding: 13px; border-radius: 50px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 2px solid var(--primary); color: var(--primary);
  transition: all 0.3s; margin-top: auto;
}
.pkg-btn:hover { background: var(--primary); color: white; }
.btn-featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none;
  box-shadow: 0 5px 20px rgba(233,30,140,0.4);
}
.btn-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,30,140,0.6); color: white; }

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  background: #f0f2f5;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 16px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  width: 40px; height: 40px; background: white; border: none;
  border-radius: 10px; color: var(--dark); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.gallery-zoom:hover { background: var(--primary); color: white; }

/* ====== ABOUT ====== */
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover; max-height: 520px;
}
.about-img-placeholder {
  width: 100%; min-height: 400px;
  background: linear-gradient(135deg, rgba(233,30,140,0.1), rgba(255,107,53,0.1));
  border-radius: 24px; display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(233,30,140,0.3);
}
.about-img-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border-radius: 16px; padding: 18px 24px;
  box-shadow: 0 10px 30px rgba(233,30,140,0.4);
  text-align: center;
}
.about-badge-num { font-size: 36px; font-weight: 800; line-height: 1; }
.about-badge-text { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.about-text { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 18px; }
.about-feature-item { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(233,30,140,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
}
.about-feature-item h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.about-feature-item p { font-size: 12px; color: var(--text-light); margin: 0; }
.btn-primary-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; border-radius: 50px;
  font-weight: 600; padding: 13px 30px; font-size: 14px;
  transition: all 0.3s; text-decoration: none;
  box-shadow: 0 5px 20px rgba(233,30,140,0.35);
  display: inline-flex; align-items: center;
}
.btn-primary-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,30,140,0.55); color: white; }

/* ====== TEAM ====== */
.team-card {
  background: white; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 90px; height: 90px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 16px;
  background: #f5f6fa;
  border: 3px solid rgba(233,30,140,0.2);
}
.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; font-size: 36px; color: #ccc; }
.team-card h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card p { font-size: 12px; color: var(--primary); margin-bottom: 14px; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a {
  width: 32px; height: 32px; border-radius: 8px;
  background: #f5f6fa; color: #666; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.team-social a:hover { background: var(--primary); color: white; }

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, #0f3460 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 70%);
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.3s; height: 100%;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-photo {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: rgba(255,255,255,0.4);
}
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; color: white; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ====== BLOG ====== */
.blog-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all 0.3s; height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: #f5f6fa; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #ddd; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block; background: rgba(233,30,140,0.1);
  color: var(--primary); font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-body h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; flex: 1; }
.blog-meta { display: flex; gap: 16px; margin-top: 16px; font-size: 12px; color: #aaa; }

/* ====== CONTACT ====== */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--text);
  background: white; border-radius: 14px; padding: 18px 20px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.contact-info-item:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); color: var(--dark); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-item span { font-size: 14px; font-weight: 500; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none; color: white;
  transition: all 0.3s;
}
.social-link.fb { background: #1877f2; }
.social-link.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.tw { background: #1da1f2; }
.social-link.yt { background: #ff0000; }
.social-link:hover { transform: translateY(-4px) scale(1.1); color: white; }
.contact-form-wrap {
  background: white; border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 12px; border-color: #e0e4eb;
  transition: all 0.2s; font-size: 14px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.12);
}
.contact-form .form-floating label { color: #999; font-size: 13px; }

/* ====== FOOTER ====== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: white;
}
.footer-brand-icon { color: var(--primary); margin-right: 8px; }
.footer-desc { font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-heading { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 13.5px; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-links a:hover { color: white; transform: translateX(4px); }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-contact li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom p { margin: 0; }
.footer-admin-link { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-admin-link:hover { color: var(--primary); }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.12); color: white; box-shadow: 0 8px 30px rgba(37,211,102,0.7); }
.wa-pulse {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .navbar-collapse { background: rgba(26,26,46,0.97); backdrop-filter: blur(20px); padding: 20px; border-radius: 16px; margin-top: 10px; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 767px) {
  .hero-content { padding: 100px 16px 60px; }
  .hero-title { font-size: clamp(24px, 7vw, 48px) !important; }
  .hero-subtitle { font-size: 14px !important; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; max-width: 300px; justify-content: center; font-size: 15px; padding: 13px 20px; }
  .about-img-badge { left: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .scroll-mouse { display: none; }
}
@media (max-width: 480px) {
  .hero-content { padding: 90px 12px 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
}
