* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-dark: #0B0418;
  --bg-sect: #070313;
  --bg-card: #150D29;
  --bg-review: #1A1333;
  --pink: #E81C68;
  --pink-hover: #C51355;
  --gold: #FFD700;
  --text-main: #FFFFFF;
  --text-muted: #A098B0;
  --grad-pink-orange: linear-gradient(90deg, #E81C68, #FF7A00);
}

body,
html {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: 'Inter', sans-serif;
}

.highlight-yellow {
  color: var(--gold);
  font-weight: 700;
}

/* Icons */
.star-orange {
  color: #FF7A00;
}

.icon-pink {
  color: var(--pink);
}

.icon-purple {
  color: #8A2BE2;
}

.icon-green {
  color: #00E676;
}

.icon-orange {
  color: #FF7A00;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-pill {
  border-radius: 50px;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 28, 104, 0.4);
}

.btn-primary-grad {
  background: var(--grad-pink-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
}

.btn-primary-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 28, 104, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--pink);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: background 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  background: rgba(11, 4, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-img {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-top {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-bottom {
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--text-main);
  transition: width 0.3s;
}

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn-header {
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn-header:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Sections Global */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--bg-dark);
}

.hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url('images/hero_bg.png') center/cover no-repeat;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.title-celebrate {
  font-size: 5.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-style: italic;
  line-height: 0.9;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.title-moment {
  font-size: 5.5rem;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  background: var(--grad-pink-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
  transform: rotate(-3deg) translateY(-5px);
  padding-left: 5px;
  display: inline-block;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;
}

.b-icon {
  color: var(--gold);
  font-size: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Categories */
.categories {
  background: radial-gradient(circle at 50% -10%, rgba(232, 28, 104, 0.15), transparent 60%);
}

.category-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.cat-card {
  border-radius: 12px;
  padding: 20px 20px 0 20px;
  position: relative;
  text-align: left;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

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

.cat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.cat-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  min-height: 40px;
}

.cat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-top: auto;
  display: block;
}

.cat-action {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
}

.cat-action:hover {
  background: #fff;
  color: #000;
}

/* Specific category backgrounds based on image */
.cat-sparklers {
  background: linear-gradient(135deg, #4B1E78, #2A104E);
  border: 1px solid #7835B5;
}

.cat-fountains {
  background: linear-gradient(135deg, #1E3A78, #10204E);
  border: 1px solid #355CB5;
}

.cat-rockets {
  background: linear-gradient(135deg, #782A1E, #4E1410);
  border: 1px solid #B54635;
}

.cat-chakkar {
  background: linear-gradient(135deg, #1E7835, #104E1E);
  border: 1px solid #35B55C;
}

.cat-flowerpots {
  background: linear-gradient(135deg, #1E6678, #10444E);
  border: 1px solid #359FB5;
}

.cat-fancy {
  background: linear-gradient(135deg, #6C1E78, #44104E);
  border: 1px solid #A535B5;
}

/* About Us */
.about {
  background: radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 50%, rgba(232, 28, 104, 0.05) 0%, transparent 50%);
  background-color: rgba(11, 4, 24, 0.5);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 28, 104, 0.1) 0%, transparent 70%);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title-left {
  font-size: 2.2rem;
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  font-size: 0.95rem;
  font-weight: 600;
}

.f-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Reviews */
.reviews {
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(255, 122, 0, 0.05) 0%, transparent 50%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--bg-review);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.r-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.r-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-color: #333;
}

.user-1 {
  background-image: url('https://i.pravatar.cc/100?img=11');
}

.user-2 {
  background-image: url('https://i.pravatar.cc/100?img=5');
}

.user-3 {
  background-image: url('https://i.pravatar.cc/100?img=8');
}

.user-4 {
  background-image: url('https://i.pravatar.cc/100?img=9');
}

.r-user h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.g-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active,
.dot:hover {
  background: #fff;
}

/* Instagram */
.title-lines {
  gap: 20px;
}

.title-lines span:first-child,
.title-lines span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 28, 104, 0.8), transparent);
}

.grad-text {
  background: var(--grad-pink-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.grad-text i {
  color: var(--pink);
  /* Fallback for icon */
  -webkit-text-fill-color: initial;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.insta-img-box {
  background-color: #222;
  border-radius: 8px;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}

.insta-img-box:hover {
  border-color: var(--pink);
  transform: translateY(-5px);
}

.b1 {
  background-image: url('images/sparklers_box.png');
}

.b2 {
  background-image: url('images/fountains_box.png');
}

.b3 {
  background-image: url('images/rockets_box.png');
}

.b4 {
  background-image: url('images/chakkar_box.png');
}

.b5 {
  background-image: url('images/hero_bg.png');
}

.b6 {
  background-image: url('images/sparklers_box.png');
}

.insta-follow {
  background: var(--grad-pink-orange);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 1;
}

/* Youtube */
.yt-title-lines {
  gap: 20px;
}

.yt-title-lines span:first-child,
.yt-title-lines span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent);
}

.yt-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.yt-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}

.play-btn:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.yt-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.yt-text p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Clients */
.clients-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.client-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.7;
}

/* Footer */
.footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.f-tagline {
  margin: 20px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.f-social {
  display: flex;
  gap: 15px;
}

.f-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 1.1rem;
}

.f-social a:hover {
  background: var(--pink);
}

.f-title {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.f-links ul,
.f-contact ul {
  list-style: none;
}

.f-links li,
.f-contact li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.f-links a:hover {
  color: var(--pink);
}

.f-contact li {
  display: flex;
  gap: 10px;
}

.f-contact i {
  color: var(--pink);
  margin-top: 4px;
}

.f-newsletter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.nl-form {
  display: flex;
}

.nl-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 0 0 4px;
  color: #fff;
  outline: none;
  font-family: inherit;
}

.nl-form input:focus {
  border-color: var(--pink);
}

.nl-form button {
  padding: 12px 20px;
  background: var(--pink);
  border: none;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: 0.3s;
}

.nl-form button:hover {
  background: var(--pink-hover);
}

.f-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.custom-form .form-row {
  display: flex;
  gap: 20px;
}

.custom-form .form-group {
  flex: 1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.custom-form label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
}

.custom-form input,
.custom-form textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
}

.custom-form input:focus,
.custom-form textarea:focus {
  border-color: var(--pink);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.flash {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.flash-success {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid #00E676;
  color: #00E676;
}

.flash-error {
  background: rgba(232, 28, 104, 0.1);
  border: 1px solid #E81C68;
  color: #ffb3c6;
}

/* Responsive Design */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .hero-title .title-celebrate {
    font-size: 4rem;
  }

  .hero-title .title-moment {
    font-size: 3.5rem;
  }

  .about-inner,
  .yt-content,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .insta-img-box:nth-child(n+5):not(.insta-follow) {
    display: none;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 4, 24, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    width: 100%;
  }

  .nav a::after {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title .title-celebrate {
    font-size: 3.5rem;
  }

  .hero-title .title-moment {
    font-size: 3rem;
  }

  .about::before {
    display: none;
  }

  .hero-image-bg {
    width: 100%;
    opacity: 0.3;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-content {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .badge {
    width: 45%;
    justify-content: center;
  }

  .category-grid {
    flex-wrap: wrap;
  }

  .cat-card {
    flex: 0 0 calc(50% - 15px);
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-img-box:nth-child(n+3):not(.insta-follow) {
    display: none;
  }

  .insta-follow {
    grid-column: span 2;
  }

  .clients-grid {
    justify-content: center;
  }

  .custom-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .yt-video img {
    height: 250px;
  }

  .contact-info-side .map-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title .title-celebrate {
    font-size: 2.5rem;
  }

  .hero-title .title-moment {
    font-size: 2rem;
  }

  .badge {
    width: 100%;
  }

  .cat-card {
    flex: 0 0 100%;
  }

  .section-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .title-lines span:first-child,
  .title-lines span:last-child {
    display: none;
  }
}