.btn-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding-left: 0.7em;
  padding-right: 1.2em;
}

.btn-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* BK Successful Events - style.css */
:root {
  --primary: #0b2341;
  /* Deep blue from PDF */
  --secondary: #1a365d;
  /* Slightly lighter blue */
  --accent: #eab308;
  /* Gold/yellow accent from PDF */
  --white: #ffffff;
  --light: #f7fafc;
  --overlay: rgba(11, 35, 65, 0.3);
  --overlay-light: rgba(234, 179, 8, 0.08);
  --font-header: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--light);
  color: var(--secondary);
  position: relative;
}

header {
  background: var(--white);
  /* Changed to white */
  color: var(--primary);
  /* Changed to blue */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.08);
  border-bottom: 4px solid var(--accent);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-name {
  color: var(--primary);
  /* Blue text */
  font-size: 24px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  letter-spacing: -0.3px;
}

.events-yellow {
  color: var(--primary);
  /* Changed to blue to match company name */
  font-weight: 900;
  margin-left: -0.2em;
  text-shadow: none;
}

.highlight {
  font-weight: bold;
  color: var(--accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  /* Blue icon */
  font-size: 2rem;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--primary);
  /* Maintained blue text */
  text-decoration: none;
  font-weight: 700;
  /* Bold as requested */
  transition: color 0.2s;
  position: relative;
  padding-bottom: 5px;
}

/* Yellow line on hover */
.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
  color: var(--primary);
  /* Text remains blue on hover */
}

.hero {
  position: relative;
  background: linear-gradient(120deg, var(--primary) 60%, var(--secondary) 100%);
  color: var(--white);
  padding: 8rem 1rem;
  /* Increased padding */
  text-align: center;
  overflow: hidden;
  min-height: 65vh;
  /* Increased height, but not too much */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-header);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  background: rgba(234, 179, 8, 0.15);
  /* Almost transparent yellow */
  color: var(--white);
  /* Changed to white for better contrast on dark overlay */
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  backdrop-filter: blur(5px);
  /* Glass effect */
  border: 1px solid rgba(234, 179, 8, 0.3);
  /* Subtle border */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Text shadow for contrast */
}

/* Hero Slider Styles */
.hero-slider {
  position: absolute;
  inset: 0;
  /* Cover the entire hero section */
  z-index: 0;
  overflow: hidden;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.highlight {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  /* Slightly transparent white */
  padding: 0 0.3em;
  border-radius: 0.3em;
  font-weight: 800;
  text-shadow: none;
}

.hero-content h1 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s;
}

#dynamic-hero-text {
  transition: opacity 0.5s ease-in-out;
  display: inline-block;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.08);
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--secondary);
}

.btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn.whatsapp:hover,
.btn.whatsapp:focus {
  background: #128c7e;
}

.services {
  position: relative;
  background: var(--white);
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  overflow: hidden;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent) 0%, transparent 80%);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.services>* {
  position: relative;
  z-index: 2;
}

.section-title-bg {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 0.25em 1.5em;
  border-radius: 2em;
  font-family: var(--font-header);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 2px 16px var(--overlay-light);
}

.service-desc {
  display: block;
  margin-top: 0.5rem;
  color: var(--secondary);
  font-size: 1rem;
  background: var(--light);
  border-radius: 0.5em;
  padding: 0.5em 1em;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.1);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
 
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent) 0%, transparent 80%);
  opacity: 0.06;
  z-index: 0;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(65, 63, 11, 0.18);
  border-color: var(--primary);
}

.service-card span.fa {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  background: var(--overlay-light);
  border-radius: 50%;
  padding: 0.5em;
}

/* Modern About Section */
.about-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #06152a 100%);
  color: var(--white);
  padding: 6rem 1rem;
  overflow: hidden;
}

/* Background pattern/elements */
.about-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.05;
  filter: blur(60px);
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  opacity: 0.05;
  filter: blur(60px);
  z-index: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content {
  text-align: left;
}

.about-text-content h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.about-text-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  /* Light gray for readability on dark */
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

/* Feature Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  /* Glass effect */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  padding: 0.75rem;
  border-radius: 0.75rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-header);
}

.feature-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Button override for about section */
.about-cta {
  margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

.gallery {
  position: relative;
  background: var(--white);
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  overflow: hidden;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent) 0%, transparent 80%);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.gallery>* {
  position: relative;
  z-index: 2;
}

/* Gallery Slider Styles */
.gallery-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 1rem 3rem 1rem;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  min-width: 280px;
  /* Slightly smaller */
  width: 280px;
  /* Fixed width */
  height: 350px;
  /* Fixed height (smaller than before) */
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

/* Dots Navigation */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(11, 35, 65, 0.2);
  /* Faded Primary */
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background-color: var(--accent);
  /* Active Yellow */
  transform: scale(1.2);
}

.gallery-slider {
  /* Ensure smooth scrolling behavior handled by JS */
  scroll-behavior: smooth;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 35, 65, 0.2);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
  /* Zoom effect on hover */
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 35, 65, 0.95), transparent);
  padding: 4rem 1.5rem 1.5rem 1.5rem;
  color: var(--white);
  text-align: left;
}

.card-label h3 {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-header);
  color: var(--accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Modern Contact Section */
.contact {
  position: relative;
  background: var(--light);
  padding: 6rem 1rem;
  overflow: hidden;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(11, 35, 65, 0.08);
  overflow: hidden;
}

/* Left Side: Contact Info */
.contact-info-panel {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.contact-info-panel .section-title-bg {
  background: transparent;
  color: var(--white);
  padding: 0;
  box-shadow: none;
  font-size: 2rem;
  margin-bottom: 2rem;
  display: block;
  text-align: left;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-item:hover .contact-icon-box {
  transform: rotate(15deg) scale(1.1);
  background: var(--accent);
  color: var(--primary);
}

.contact-text h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: var(--accent);
}

.contact-text p,
.contact-text a {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.5;
}

.contact-text a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Right Side: Form */
.contact-form-panel {
  padding: 3rem 2.5rem;
  background: var(--white);
}

.contact-form-panel h3 {
  color: var(--primary);
  font-family: var(--font-header);
  font-size: 1.75rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--secondary);
  opacity: 0.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: 100%;
  /* Reset max-width */
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #f8fafc;
  color: var(--primary);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 35, 65, 0.05);
  outline: none;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* Modern Footer */
.footer {
  background: #0f172a;
  /* Very dark blue/slate */
  color: #94a3b8;
  padding: 8rem 1rem 4rem 1rem;
  position: relative;
  overflow: hidden;
  border-top: none;
}

/* Mind-blowing graphic/watermark effect */
.footer::before {
  content: 'BK EVENTS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-header);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.footer-brand {
  max-width: 400px;
  text-align: left;
}

.footer-brand h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: var(--accent);
}

.footer-contact-item .fa {
  font-size: 1.4rem;
  color: var(--accent);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
    text-align: center;
  }

  .footer-contact-info {
    text-align: center;
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {

  .navbar,
  .footer-content {
    max-width: 900px;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .navbar,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    background: var(--primary);
    position: absolute;
    top: 64px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.08);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.2rem;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-info {
    padding: 1rem 0.5rem;
  }
}

/* Site Footer Bottom (Developer Credit) */
.site-footer__bottom {
  background-color: var(--accent);
  padding: 1rem 0;
  margin-top: 2rem;
  width: 100%;
}

.site-footer__bottom-inner {
  text-align: center;
}

.site-footer__bottom-text {
  color: var(--primary);
  font-weight: 700;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer__bottom-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 900;
}

.site-footer__bottom-text a:hover {
  text-decoration: underline;
  opacity: 0.8;
}