img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --primary: #ff5e14;
  --secondary: #ff9c42;
  --bg: #ffffff;
  --text: #333333;
  --dark-bg: #121212;
  --dark-text: #eaeaea;
}

body.dark {
  --bg: var(--dark-bg);
  --text: var(--dark-text);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

a { text-decoration: none; color: inherit; }

header {
  background: url('https://images.unsplash.com/photo-1571019613914-85f342c38aa6') center/cover;
  color: white;
  padding: 80px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 156, 66, 0.3) 0%, transparent 60%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

header h1 {
  position: relative;
  z-index: 1;
  font-size: 3.5em;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.tagline {
  position: relative;
  z-index: 1;
  font-size: 1.4em;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.3s both;
}

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

@media (max-width: 768px) {
  header {
    padding: 50px 20px;
  }
  
  header h1 {
    font-size: 2.2em;
  }
  
  .tagline {
    font-size: 1em;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 40px 15px;
  }
  
  header h1 {
    font-size: 1.8em;
  }
  
  .tagline {
    font-size: 0.9em;
    letter-spacing: 1.5px;
  }
}

nav {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

nav a {
  color: white;
  padding: 15px 25px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 80%;
}

nav a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-login, .btn-signup {
  margin-left: 15px;
  padding: 10px 25px;
  border-radius: 25px;
  border: 2px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9em;
}

.btn-signup {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.btn-login:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.3);
}

.btn-signup:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 94, 20, 0.4);
}

section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
}

@media (max-width: 968px) {
  section {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 50px 15px;
  }
}

section h2 {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

body.dark section h2 {
  color: #ffffff;
}

@media (max-width: 968px) {
  section h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  section h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  section h2 {
    font-size: 1.7em;
  }
  
  section h2::after {
    width: 40px;
    height: 3px;
  }
}

.btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 94, 20, 0.4);
}

.btn:active {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
  .btn {
    padding: 14px 30px;
    font-size: 0.95em;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 968px) {
  .features {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .features {
    gap: 15px;
  }
}

.feature-card {
  flex: 1 1 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 94, 20, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.05) 0%, rgba(255, 156, 66, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 94, 20, 0.2);
  border-color: rgba(255, 94, 20, 0.3);
}

.feature-card i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  display: block;
}

.feature-card:hover i {
  transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1em;
}

body.dark .feature-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-color: rgba(255, 94, 20, 0.2);
}

body.dark .feature-card h3 {
  color: #ffffff;
}

body.dark .feature-card p {
  color: #cccccc;
}

@media (max-width: 768px) {
  .feature-card {
    flex: 1 1 100%;
    padding: 35px 25px;
  }
  
  .feature-card h3 {
    font-size: 1.3em;
  }
  
  .feature-card i {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-card h3 {
    font-size: 1.2em;
  }
  
  .feature-card i {
    font-size: 2.5rem;
  }
}

footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 94, 20, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(255, 94, 20, 0.2);
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.footer-section h4 {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95em;
}

.footer-section ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-section ul li i {
  margin-right: 8px;
  color: var(--primary);
  font-size: 0.9em;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.2), rgba(255, 156, 66, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 94, 20, 0.3);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
  border-color: transparent;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9em;
  margin: 5px 0;
  letter-spacing: 0.5px;
}

.visitor-counter {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section ul li a {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 35px 15px 20px;
  }
  
  .footer-content {
    gap: 35px;
    padding-bottom: 30px;
  }
  
  .footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  
  .footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  
  .footer-section p {
    font-size: 0.9em;
  }
  
  .footer-section ul li {
    margin-bottom: 15px;
  }
  
  .footer-section ul li a {
    font-size: 0.95em;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-links a {
    width: 48px;
    height: 48px;
    font-size: 1.3em;
  }
  
  .footer-bottom {
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 0.85em;
  }
}

.visitor-counter {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #ccc;
  text-shadow: 1px 1px 1px #000;
}

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  padding: 18px;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20ba5a 0%, #25d366 100%);
}

.whatsapp:active {
  transform: translateY(-3px) scale(1.08);
}

@media (max-width: 768px) {
  .whatsapp {
    bottom: 85px;
    right: 20px;
    padding: 16px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp {
    bottom: 80px;
    right: 15px;
    padding: 14px;
    font-size: 22px;
  }
}

/* Dark mode toggle */
.toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: white;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid rgba(255, 94, 20, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 94, 20, 0.3);
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  border-color: rgba(255, 94, 20, 0.5);
}

.toggle:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .toggle {
    bottom: 85px;
    left: 20px;
    padding: 10px 18px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .toggle {
    bottom: 80px;
    left: 15px;
    padding: 10px 16px;
    font-size: 0.9em;
  }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 50%, #fef3f0 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

body.dark .contact-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
}

body.dark .contact-subtitle {
  color: #bbb;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Contact Info Cards */
.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 94, 20, 0.1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-card:hover::before {
  opacity: 1;
}

body.dark .info-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-color: rgba(255, 94, 20, 0.2);
}

.info-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 94, 20, 0.2);
  border-color: rgba(255, 94, 20, 0.3);
}

.info-card span {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(255, 94, 20, 0.3));
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.3em;
  color: #1a1a1a;
  font-weight: 700;
}

.info-card p {
  color: #666;
  font-size: 0.95em;
}

body.dark .info-card h3 {
  color: #ffffff;
}

body.dark .info-card p {
  color: #cccccc;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 94, 20, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

body.dark .contact-form {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-color: rgba(255, 94, 20, 0.2);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  outline: none;
  font-size: 1em;
  background: #f8f9fa;
  color: inherit;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.15);
  transform: translateY(-2px);
}

body.dark .form-group input,
body.dark .form-group textarea {
  background: #2a2a2a;
  border-color: #444;
  color: #fff;
}

body.dark .form-group input:focus,
body.dark .form-group textarea:focus {
  background: #333;
  border-color: var(--primary);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #888;
  font-size: 0.9rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  background: white;
  padding: 0 5px;
}

body.dark .form-group label {
  background: #1e1e1e;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--primary);
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* =========================
   SHARED
========================= */
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
}

body.dark .section-subtitle {
  color: #bbb;
}

/* =========================
   GALLERY
========================= */
.gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 94, 20, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

body.dark .gallery-section {
  background: linear-gradient(135deg, #181818 0%, #0a0a0a 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
}

.gallery-grid img:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 94, 20, 0.3);
  border-color: rgba(255, 94, 20, 0.5);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    height: 220px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-grid img {
    height: 200px;
    border-radius: 12px;
  }
}

/* =========================
   EVENTS
========================= */
.events-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
}

.events-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 156, 66, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

body.dark .events-section {
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.event-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 94, 20, 0.1);
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-card:hover::before {
  transform: scaleX(1);
}

body.dark .event-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-color: rgba(255, 94, 20, 0.2);
}

.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 94, 20, 0.2);
}

.event-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
}

.event-card p {
  color: #666;
  line-height: 1.8;
}

body.dark .event-card h3 {
  color: #ffffff;
}

body.dark .event-card p {
  color: #cccccc;
}

.event-date {
  position: absolute;
  top: -15px;
  right: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.4);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .event-card {
    padding: 30px 25px;
  }
  
  .event-card h3 {
    font-size: 1.4em;
  }
  
  .event-date {
    top: -12px;
    right: 20px;
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .events-grid {
    gap: 20px;
  }
  
  .event-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .event-card h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
  }
  
  .event-card p {
    font-size: 0.95em;
  }
  
  .event-date {
    top: -10px;
    right: 15px;
    padding: 7px 12px;
    font-size: 0.75rem;
  }
}

.btn.small {
  padding: 8px 20px;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* =========================
   PRODUCTS
========================= */
#products {
  background: #f7f7f7;
}

body.dark #products {
  background: #181818;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

body.dark .product-card {
  background: #1e1e1e;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 15px;
}

.product-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.cart-icon {
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.logo {
  color: white;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 94, 20, 0.3);
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .menu-toggle {
    font-size: 1.8rem;
    padding: 5px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-links a {
  color: white;
  margin-left: 20px;
}

/* ✅ ADD THIS HERE */
section {
  overflow-x: hidden;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  img {
    max-width: 100%;
  }
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links a {
    padding: 18px;
    border-top: 1px solid rgba(255, 94, 20, 0.2);
    margin: 0;
    font-size: 1.05em;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .nav-links a:active {
    background: rgba(255, 94, 20, 0.1);
  }

  header h1 {
    font-size: 2.2em;
  }
  
  header {
    padding: 50px 20px;
  }

  section {
    padding: 60px 20px;
  }
  
  section h2 {
    font-size: 2.2em;
  }

  .features,
  .events-grid,
  .gallery-grid,
  .contact-container {
    grid-template-columns: 1fr !important;
    flex-direction: column;
  }

  .feature-card,
  .event-card {
    width: 100%;
  }

  .whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 15px;
    font-size: 24px;
  }

  .toggle {
    bottom: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 0.9em;
  }
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

/* Swipe Gallery */
.swipe-gallery {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.swipe-gallery img {
  width: 90vw;             /* responsive to screen width */
  max-width: 320px;        /* prevents huge images */
  height: auto;
  border-radius: 12px;
  scroll-snap-align: center;
  flex-shrink: 0;
  object-fit: cover;
}


.swipe-gallery::-webkit-scrollbar {
  display: none;
}

/* Bottom Navigation */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 1000;
  }

  .bottom-nav a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
  }

  body {
    padding-bottom: 60px;
  }
}

/* Sticky Call/WhatsApp */
.sticky-contact {
  display: none;
}

@media (max-width: 768px) {
  .sticky-contact {
    display: flex;
    position: fixed;
    bottom: 60px;
    left: 10px;
    right: 10px;
    gap: 10px;
    z-index: 1000;
  }

  .sticky-contact a {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }

  .call-btn {
    background: #007bff;
  }

  .wa-btn {
    background: #25D366;
  }
}

/* Mobile CTA */
@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 50%, #ff5e14 100%);
  color: white;
  text-align: center;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.mobile-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.mobile-cta h2 {
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.mobile-cta a {
  display: inline-block;
  margin-top: 15px;
  background: white;
  color: #ff4b2b;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-cta a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

@media (max-width: 480px) {
  .mobile-cta {
    padding: 30px 15px;
  }

  .mobile-cta h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .visitor-counter {
    margin-top: 5px;
    font-size: 0.9rem;
  }
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #f0e8ff 25%, #ffe8f5 50%, #f0f4ff 75%, #f9f5ff 100%);
  color: #1a1a1a;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.dark .products-section {
  background: linear-gradient(135deg, #0a1428 0%, #1a2a52 25%, #2d1b4e 50%, #1e0f3a 75%, #0f1f3f 100%);
  color: white;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(126, 34, 206, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
  animation: gradientShift 15s ease infinite;
}

body.dark .products-section::before {
  background: 
    radial-gradient(circle at 10% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(126, 34, 206, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 1.1; }
}

.products-section h2 {
  font-size: 3.2em;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -1px;
}

body.dark .products-section h2 {
  color: #ffffff;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6);
}

.products-section .section-subtitle {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.5px;
}

body.dark .products-section .section-subtitle {
  color: #e8e8e8;
  opacity: 0.98;
}

.products-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.products-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-bottom: 70px;
}

.product-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 232, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  padding: 45px 30px;
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
  position: relative;
  overflow: hidden;
}

body.dark .product-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(126, 34, 206, 0.12) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.product-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-highlight:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 200, 255, 0.95) 100%);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
  border-color: rgba(255, 107, 53, 0.5);
}

body.dark .product-highlight:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(126, 34, 206, 0.18) 100%);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
  border-color: rgba(255, 107, 53, 0.6);
}

.product-highlight:hover::before {
  opacity: 1;
}

.product-highlight i {
  font-size: 4.5em;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
  transition: transform 0.5s ease;
}

.product-highlight:hover i {
  transform: scale(1.15) rotate(10deg);
}

.product-highlight h3 {
  font-size: 1.7em;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: 0.5px;
}

body.dark .product-highlight h3 {
  color: #ffffff;
}

.product-highlight p {
  font-size: 1.1em;
  opacity: 1;
  color: #444444;
  line-height: 1.8;
  font-weight: 500;
}

body.dark .product-highlight p {
  color: #f0f0f0;
  opacity: 0.95;
}

.products-cta {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f0f5 100%);
  color: #1a1a1a;
  padding: 70px 50px;
  border-radius: 30px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.15);
  border: 3px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

body.dark .products-cta {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f0f5 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.products-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.1); }
}

.products-cta h3 {
  font-size: 2.6em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

body.dark .products-cta h3 {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-cta > p {
  font-size: 1.25em;
  margin-bottom: 40px;
  color: #222222;
  line-height: 1.8;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

body.dark .products-cta > p {
  color: #222222;
}

.shop-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8a50 100%);
  color: #fff;
  padding: 24px 55px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 45px rgba(255, 107, 53, 0.7);
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  border: 3px solid transparent;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.shop-now-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50px;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.shop-now-btn:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #ff8a50 100%);
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 25px 70px rgba(255, 107, 53, 0.9);
  letter-spacing: 1px;
}

.shop-now-btn i:first-child {
  font-size: 1.4em;
  transition: transform 0.4s ease;
}

.shop-now-btn i:last-child {
  font-size: 1.05em;
  transition: transform 0.4s ease;
}

.shop-now-btn:hover i:first-child {
  transform: scale(1.3);
}

.shop-now-btn:hover i:last-child {
  transform: translateX(15px);
}

.shop-note {
  font-size: 1em;
  color: #666666;
  font-style: italic;
  margin-top: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

body.dark .shop-note {
  color: #888888;
}

.shop-note strong {
  color: #ff6b35;
  font-weight: 700;
}

@media (max-width: 968px) {
  .products-section {
    padding: 80px 20px;
  }
  
  .products-section h2 {
    font-size: 2.5em;
  }
  
  .products-section .section-subtitle {
    font-size: 1.1em;
    margin-bottom: 50px;
  }
  
  .products-info {
    gap: 25px;
    margin-bottom: 50px;
  }
  
  .product-highlight {
    padding: 35px 25px;
  }
  
  .product-highlight i {
    font-size: 3.5em;
  }
  
  .products-cta {
    padding: 50px 35px;
  }
  
  .products-cta h3 {
    font-size: 2em;
  }
  
  .products-cta > p {
    font-size: 1.1em;
  }
  
  .shop-now-btn {
    padding: 20px 45px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 60px 15px;
  }
  
  .products-section h2 {
    font-size: 2em;
  }
  
  .products-section .section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  
  .products-info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .product-highlight {
    padding: 30px 20px;
  }
  
  .product-highlight h3 {
    font-size: 1.5em;
  }
  
  .product-highlight p {
    font-size: 1em;
  }
  
  .products-cta {
    padding: 40px 25px;
    max-width: 100%;
  }
  
  .products-cta h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
  }
  
  .products-cta > p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  
  .shop-now-btn {
    padding: 18px 35px;
    font-size: 1.1em;
    gap: 12px;
  }
  
  .shop-now-btn i:first-child {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 50px 15px;
  }
  
  .products-section h2 {
    font-size: 1.8em;
  }
  
  .product-highlight {
    padding: 25px 20px;
  }
  
  .product-highlight i {
    font-size: 3em;
  }
  
  .product-highlight h3 {
    font-size: 1.3em;
  }
  
  .products-cta {
    padding: 35px 20px;
  }
  
  .products-cta h3 {
    font-size: 1.5em;
  }
  
  .shop-now-btn {
    padding: 16px 30px;
    font-size: 1em;
  }
}
