/* Base Styles */
:root {
  --primary: #ff3366;
  --secondary: #6633ff;
  --accent: #33ccff;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

p {
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Header Styles */
header {
  background-color: rgba(26, 26, 46, 0.9);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-text span {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

/* Header Styles - Hamburger Menu Changes */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  order: -1;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    order: -1;
    margin-right: 20px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .logo-text {
    margin-left: auto;
  }

  .header-container {
    justify-content: flex-start;
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-20px);
  }
}

@media (max-width: 576px) {
  .logo {
    transform: translateX(-10px);
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)),
    url("https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--dark);
}

/* Enhanced Services Section */
.services {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="%23ff3366" d="M500,100C229.4,100,10,319.4,10,590s219.4,490,490,490s490-219.4,490-490S770.6,100,500,100z M500,899.4 c-170.7,0-309.4-138.7-309.4-309.4S329.3,280.6,500,280.6S809.4,419.3,809.4,590S670.7,899.4,500,899.4z"/></svg>')
    repeat;
}

.services h2 {
  color: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* FIXED: Event Staffing Image - Show faces properly */
.service-card:nth-child(3) .service-image {
  background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}

.service-card:nth-child(3) .service-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center 30%;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Fix for DJ image to be consistent */
.service-card:nth-child(2) .service-image {
  background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
}

.service-card:nth-child(2) .service-image img {
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 26, 46, 0.8) 100%
  );
  opacity: 0.7;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 0.9;
}

.service-content {
  padding: 30px 25px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.service-card p {
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #ccc;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Animation for service cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Enhanced Portfolio Section */
.portfolio {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="%2333ccff" d="M500,100C229.4,100,10,319.4,10,590s219.4,490,490,490s490-219.4,490-490S770.6,100,500,100z M500,899.4 c-170.7,0-309.4-138.7-309.4-309.4S329.3,280.6,500,280.6S809.4,419.3,809.4,590S670.7,899.4,500,899.4z"/></svg>')
    repeat;
}

.portfolio h2 {
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 350px;
  transition: var(--transition);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 46, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
  opacity: 1;
  transition: var(--transition);
  transform: translateY(0);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.portfolio-overlay p {
  color: #ddd;
  font-size: 0.95rem;
}

/* REMOVED Portfolio CTA Button styles */

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  color: white;
  padding: 100px 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="%2333ccff" d="M500,100C229.4,100,10,319.4,10,590s219.4,490,490,490s490-219.4,490-490S770.6,100,500,100z M500,899.4 c-170.7,0-309.4-138.7-309.4-309.4S329.3,280.6,500,280.6S809.4,419.3,809.4,590S670.7,899.4,500,899.4z"/></svg>')
    repeat;
}

.testimonials h2 {
  color: white;
}

.testimonials .section-subtitle {
  color: #bbb;
  margin-bottom: 60px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  height: 400px;
  margin-bottom: 40px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card.prev {
  transform: translateX(-100%);
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 40px;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #eee;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-avatar i.fa-user-circle {
  font-size: 3.5rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 8px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: white;
}

.testimonial-info .title {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.testimonial-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 15px;
}

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

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-detail i {
  font-size: 1.2rem;
  margin-right: 15px;
  color: var(--secondary);
  width: 30px;
}

.contact-detail a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--primary);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
}

/* Booking CTA Styles */
.booking-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  max-width: 400px;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-note {
  margin-top: 20px;
  opacity: 0.8;
  font-style: italic;
}

.contact-form {
  display: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 204, 255, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23ff3366" d="M500,100C229.4,100,10,319.4,10,590s219.4,490,490,490s490-219.4,490-490S770.6,100,500,100z M500,899.4 c-170.7,0-309.4-138.7-309.4-309.4S329.3,280.6,500,280.6S809.4,419.3,809.4,590S670.7,899.4,500,899.4z"/></svg>')
    repeat;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* WhatsApp Specific Styles */
.whatsapp-link {
  background: linear-gradient(to right, #25d366, #128c7e) !important;
}

.whatsapp-btn {
  background: linear-gradient(to right, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.whatsapp-submit-btn {
  background: linear-gradient(to right, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.whatsapp-direct {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.whatsapp-direct h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.form-note {
  text-align: center;
  margin-top: 15px;
  color: #666;
  font-style: italic;
}

.contact-detail .fab.fa-whatsapp {
  color: #25d366;
}

/* Enhanced form styles */
.form-group.focused label {
  color: var(--secondary);
  transform: translateY(-5px);
  font-size: 0.9rem;
}

.form-group {
  position: relative;
}

.form-group label {
  transition: var(--transition);
}

/* Portfolio Gallery Modal */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.portfolio-modal-content {
  background-color: transparent;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.portfolio-modal-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.portfolio-close-modal {
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-close-modal:hover {
  transform: scale(1.1);
  background: rgba(255, 51, 102, 0.8);
}

.portfolio-modal-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 100px;
}

/* Gallery Slider */
.gallery-slider {
  width: 100%;
  max-width: 1200px;
  height: 70vh;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery-slide.prev {
  transform: translateX(-100%);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
}

.gallery-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.gallery-slide-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.gallery-slide-content p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Gallery Navigation */
.gallery-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  color: white;
}

.gallery-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.gallery-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.gallery-counter {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 30px;
  min-width: 100px;
  text-align: center;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding: 20px;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.thumbnail {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  flex-shrink: 0;
  border: 3px solid transparent;
}

.thumbnail:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

.thumbnail.active {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-5px);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Booking Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close-modal:hover {
  transform: scale(1.2);
  color: var(--accent);
}

.modal-body {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-body .full-width {
  grid-column: 1 / -1;
}

.modal-body .services-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.modal-body .checkbox-label {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #e9ecef;
}

.modal-body .checkbox-label:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.modal-body .checkbox-label input {
  margin-right: 8px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Phone hint styling */
.phone-hint {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 0.8rem;
  font-style: italic;
}

.form-group .phone-hint {
  margin-top: 5px;
}

/* Make the contact form in the contact section more compact */
.contact-form {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
  
  .gallery-slider {
    height: 60vh;
  }
  
  .gallery-slide-content {
    padding: 20px;
  }
  
  .gallery-slide-content h4 {
    font-size: 1.3rem;
  }
  
  .gallery-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .testimonial-slider {
    height: 450px;
  }
  
  .testimonial-content {
    padding: 30px;
    max-width: 700px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
}

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

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    max-width: 300px;
  }

  .logo-image {
    height: 35px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    margin-bottom: 20px;
  }

  /* Mobile Contact Section Fix */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .booking-cta {
    padding: 30px 20px;
    margin: 0 auto;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-detail {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
  
  /* Portfolio Modal Mobile */
  .portfolio-modal-header {
    padding: 15px 20px;
  }
  
  .portfolio-modal-header h3 {
    font-size: 1.5rem;
  }
  
  .portfolio-close-modal {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .gallery-slider {
    height: 50vh;
  }
  
  .portfolio-modal-body {
    padding: 60px 15px 80px;
  }
  
  .gallery-navigation {
    gap: 20px;
  }
  
  .gallery-counter {
    font-size: 1rem;
    min-width: 80px;
    padding: 8px 15px;
  }
  
  .thumbnail {
    width: 100px;
    height: 70px;
  }
  
  /* Testimonials Mobile */
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonial-slider {
    height: 500px;
  }
  
  .testimonial-content {
    padding: 25px;
  }
  
  .testimonial-content::before {
    font-size: 80px;
    top: -20px;
    left: 25px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .testimonial-info h4 {
    font-size: 1.2rem;
  }
  
  .testimonial-nav-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-form {
    padding: 20px;
  }

  .logo-image {
    height: 30px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .service-content {
    padding: 20px 15px;
  }

  /* Mobile Booking CTA Fix */
  .booking-cta {
    padding: 25px 15px;
  }

  .cta-icon {
    font-size: 2.5rem;
  }

  .cta-content h3 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  /* Mobile Portfolio Fix */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item {
    height: 250px;
  }

  .portfolio-overlay {
    padding: 15px;
  }

  .portfolio-overlay h3 {
    font-size: 1.3rem;
  }
  
  /* Portfolio Modal Mobile */
  .gallery-slider {
    height: 40vh;
  }
  
  .gallery-slide-content {
    padding: 15px;
  }
  
  .gallery-slide-content h4 {
    font-size: 1.1rem;
  }
  
  .gallery-slide-content p {
    font-size: 0.9rem;
  }
  
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .thumbnail {
    width: 80px;
    height: 60px;
  }
  
  /* Testimonials Mobile */
  .testimonial-slider {
    height: 550px;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-navigation {
    gap: 20px;
  }
  
  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .testimonial-dots {
    gap: 10px;
  }
  
  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  /* Mobile Footer Fix */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile Modal Fixes */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-body {
    padding: 20px 15px;
  }

  .modal-body .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal-body .services-checkbox {
    grid-template-columns: 1fr;
  }
}
/* Our Repertoire Button Styles */
.btn-repertoire {
  background: linear-gradient(to right, #33ccff, #6633ff);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-repertoire:hover {
  background: linear-gradient(to right, #2ab8e6, #5522ee);
  border-color: white;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    margin: 5px 0;
  }
}