/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');

/* Root Variables */
:root {
  --primary-red: #FF4757;
  --primary-gold: #FFA502;
  --primary-blue: #3742FA;
  --primary-purple: #A55EEA;
  --dark-bg: #0c0c0c;
  --darker-bg: #1a1a1a;
  --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  --gradient-rainbow: linear-gradient(45deg, var(--primary-red), var(--primary-gold), var(--primary-blue), var(--primary-purple));
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Particles Background */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gradient-rainbow);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(200px) scale(1);
    opacity: 0;
  }
}

/* Navigation */
.premium-nav {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand {
  font-family: Oswald;
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
}

.glow-hover:hover {
  color: var(--primary-gold) !important;
  text-shadow: 0 0 10px var(--primary-gold);
}

/* Glow Text Effects */
.glow-text {
  background: var(--gradient-rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.animate-glow {
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px var(--primary-gold), 0 0 40px var(--primary-red);
  }
  100% {
    text-shadow: 0 0 30px var(--primary-purple), 0 0 60px var(--primary-blue);
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255, 71, 87, 0.1) 0%, rgba(12, 12, 12, 0.9) 70%);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-rainbow);
  opacity: 0.1;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-title {
  font-family: Oswald;
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: block;
}

.word-animate {
  display: inline-block;
  animation: slideInGlow 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
  animation-delay: var(--delay, 0s);
}

@keyframes slideInGlow {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1.5s;
}

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 2s;
}

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

/* Premium Buttons */
.premium-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(20px);
}

.premium-btn span {
  position: relative;
  z-index: 2;
}

.premium-btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.primary-glow {
  background:#FF8A00;
  color: white;

}

.secondary-glow {
background: #B41A00;
  color: white;
  box-shadow: 0 8px 32px rgba(55, 66, 250, 0.3);
}

.premium-btn:hover {
  transform: translateY(-3px);
 
}

.premium-btn:hover i {
  transform: translateX(5px);
}

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

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

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: var(--primary-gold);
  animation: floatIcon 6s ease-in-out infinite;
  animation-delay: var(--delay);
  left: var(--x);
  top: var(--y);
  text-shadow: 0 0 20px currentColor;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  position: relative;
  z-index: 10;
}

.section-title {
   font-family: Oswald;
  
    font-size: 3rem;
    margin-bottom: 1rem;
    color:#FF8A00;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.premium-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
 
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.premium-card:hover .card-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1) rotate(360deg);
}

.premium-card h4 {
  font-family: Oswald;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.premium-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: -1;
}

.premium-card:hover .card-glow {
  opacity: 0.1;
}

/* Gallery Section */
.gallery-section {
  background: var(--dark-bg);
  position: relative;
}

.premium-carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel-item {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.carousel-content {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.carousel-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
  transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-content img {
  transform: scale(1.05);
}

.carousel-caption {
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 2rem;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  text-align: center;
}

.carousel-caption h5 {
  font-family: Oswald;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background: transparent;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background: var(--primary-gold);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(12, 12, 12, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gradient-primary);
  box-shadow: 0 0 20px var(--primary-gold);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, var(--primary-gold), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--primary-red), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--primary-blue), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--primary-purple), transparent),
    radial-gradient(2px 2px at 160px 30px, var(--primary-gold), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes particleMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-200px, -100px); }
}

.contact-form {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.premium-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.premium-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(255, 167, 2, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.premium-input::placeholder {
  color: var(--text-muted);
}

.form-group label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 10px;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-info:hover .contact-icon {
  transform: scale(1.1) rotate(360deg);
  background: var(--gradient-primary);
}

.contact-info h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-info p {
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 0 20px var(--primary-gold);
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .premium-card {
    padding: 2rem;
  }
  
  .carousel-content {
    height: 400px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .premium-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .premium-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .carousel-content {
    height: 300px;
  }
  
  .carousel-caption {
    padding: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  
  .carousel-caption h5 {
    font-size: 1.3rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .floating-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .premium-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-buttons .premium-btn {
    margin-bottom: 1rem;
  }
  
  .carousel-content {
    height: 250px;
  }
  
  .social-links {
    justify-content:left;
    margin-top: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Loading Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Additional Premium Effects */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}

/* Enhanced focus states for accessibility */
.premium-btn:focus,
.premium-input:focus,
.social-link:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Video Hero Section */
.video-hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;
}

.video-slide.active {
  opacity: 1;
  z-index: 2;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.4);
  z-index: 3;
}

.video-content {
  position: absolute;
  top: 80%;
  left: 49%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 4;
  width: 90%;
  max-width: 800px;
}

.video-title {
  font-family: Oswald;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: block;
}

.video-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.video-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.video-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 5;
}

.video-nav-btn {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.video-nav-btn.active {
  background: var(--primary-gold);
  opacity: 1;
  transform: scale(1.2);
}

.video-nav-btn:hover {
  opacity: 1;
  box-shadow: 0 0 15px var(--primary-gold);
}

/* Page Header */
.page-header {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-rainbow);
  opacity: 0.1;
    pointer-events: none; /* 👈 This makes it non-blocking */
  z-index: 0; /* keeps it behind the content */
  animation: gradientShift 8s ease-in-out infinite;
}

.page-title {
font-family: Oswald;
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-red);
  text-shadow: 0 0 10px currentColor;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* About Preview Section */
.about-preview {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
 font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  display: block;
   color:#FF8A00;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
}

.image-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-primary);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-image:hover .image-glow {
  opacity: 0.3;
}

/* Card Links */
.card-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--primary-red);
  text-shadow: 0 0 10px currentColor;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--dark-bg);
}

.feature-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);

}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.feature-card h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-muted);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-title {
    font-family: Oswald;
  font-weight: 900;
  font-size: 3rem;
    color:#FF8A00;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Enhancements */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h4 {
 font-family: Oswald;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-desc {
    color: white;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-links h5 {
font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
  text-shadow: 0 0 10px currentColor;
}

.footer-contact h5 {
font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-item i {
  color: var(--primary-gold);
  width: 20px;
  text-align: center;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1rem;
}

.copyright {
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-gold);
}

/* About Page Specific Styles */
.our-story {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.mission-vision {
  background: var(--dark-bg);
}

.mission-card,
.vision-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.mission-card .card-icon,
.vision-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1) rotate(360deg);
}

.mission-card h3,
.vision-card h3 {
font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.team-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 60px rgba(255, 167, 2, 0.2);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;

  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay .social-links {
  display: flex;
  gap: 1rem;
}

.team-overlay .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.team-overlay .social-link:hover {
  background: var(--gradient-secondary);
  transform: scale(1.1);
}

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h4 {
font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.team-role {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-desc {
  color: var(--text-muted);
  margin: 0;
}

/* Stats Section */
.stats-section {
  background: var(--dark-bg);
}

.stat-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(360deg);
}

.stat-card .stat-number {
font-family: Oswald;
  font-weight: 900;
  font-size: 3rem;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.value-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1) rotate(360deg);
}

.value-card h4 {
font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.value-card p {
  color: var(--text-muted);
  margin: 0;
}

/* Services Page Styles */
.services-grid {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.service-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 60px rgba(255, 167, 2, 0.2);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  animation: pulse 2s infinite;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.service-features i {
  color: var(--primary-gold);
  font-size: 0.8rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price-from {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-amount {
  font-family: Oswald;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-gold);
}

/* Service Process */
.service-process {
  background: var(--dark-bg);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Oswald;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: var(--gradient-secondary);
  color: white;
  transform: scale(1.1);
}

.process-step h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.process-step p {
  color: var(--text-muted);
  margin: 0;
}

/* Add-on Services */
.addon-services {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.addon-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.addon-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.addon-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.addon-card:hover .addon-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.addon-card h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.addon-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.addon-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: Oswald;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Experiences Page Styles */
.featured-projects {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.featured-project {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

.project-image {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(12, 12, 12, 0.8), rgba(12, 12, 12, 0.4));
  display: flex;
  align-items: end;
  padding: 2rem;
}

.project-info h3 {
  font-family: Oswald;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.project-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.project-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.project-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.project-details {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
}

.project-details h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.project-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.project-highlights i {
  color: var(--primary-gold);
}

.project-client {
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Gallery Styles */
.project-gallery {
  background: var(--dark-bg);
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 167, 2, 0.3);
}

.gallery-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.gallery-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.gallery-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary-gold);
  font-size: 0.8rem;
}

.gallery-actions {
  text-align: center;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.testimonial-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);

}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.stars i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.testimonial-content p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.author-info h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.author-info p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Modal Styles */
.premium-modal .modal-content {
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.premium-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-details-list {
  margin-top: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.detail-item strong {
  color: var(--text-light);
}

/* Effects Page Styles */
.effects-categories {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.effect-category {
  margin-bottom: 4rem;
}

.category-title {
  font-family: Oswald;
  color: #FF8A00;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.effect-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.effect-item:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 5px 20px rgba(255, 167, 2, 0.2);
  transform: translateY(-2px);
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: white !important;
    content: var(--bs-breadcrumb-divider, "/");
}
.effect-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.effect-info h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.effect-info p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Color Palette */
.color-palette {
  background: var(--dark-bg);
}

.color-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.color-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.color-sample {
  width: 100%;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.color-card h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.color-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.color-variants {
  list-style: none;
  padding: 0;
  margin: 0;
}

.color-variants li {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.color-variants li::before {
  content: '•';
  color: var(--primary-gold);
  position: absolute;
  left: 0;
}

/* Technical Specs */
.technical-specs {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.spec-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.spec-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
background: #B41A00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.spec-card h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.spec-details {
  text-align: left;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.spec-value {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Custom Effects */
.custom-effects {
  background: var(--dark-bg);
}

.custom-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.feature-content h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feature-content p {
  color: var(--text-muted);
  margin: 0;
}

.custom-showcase {
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.showcase-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 167, 2, 0.3);
}

.showcase-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(12, 12, 12, 0.9));
  padding: 1rem;
  text-align: center;
}

.showcase-overlay h6 {
  color: var(--text-light);
  margin: 0;
  font-family: Oswald;
  font-weight: 700;
}

/* Contact Page Styles */
.contact-form-section {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.contact-form {
  padding: 3rem;
}

.form-title {
  font-family: Oswald;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-sidebar {
  background: rgba(12, 12, 12, 0.8);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
}

.sidebar-content h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.benefit-item i {
  color: var(--primary-gold);
}

.response-time,
.emergency-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time h5,
.emergency-contact h5 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.emergency-phone:hover {
  color: var(--primary-red);
  text-shadow: 0 0 10px currentColor;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--dark-bg);
}

.contact-info-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(255, 167, 2, 0.2);
}

.contact-info-card .contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1) rotate(360deg);
}

.contact-info-card h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.phone-numbers,
.email-addresses {
  margin: 1.5rem 0;
}

.phone-item,
.email-item {
  margin-bottom: 0.75rem;
}

.phone-item strong,
.email-item strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
}

.phone-item a,
.email-item a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-item a:hover,
.email-item a:hover {
  color: var(--primary-red);
  text-shadow: 0 0 10px currentColor;
}

.office-hours,
.availability,
.response-time {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.office-hours h6,
.availability h6,
.response-time h6 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.office-hours p,
.availability p,
.response-time p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.premium-accordion .accordion-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.premium-accordion .accordion-button {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: Oswald;
  font-weight: 700;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.premium-accordion .accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
  box-shadow: none;
}

.premium-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 167, 2, 0.25);
}

.premium-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFA502'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.premium-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.premium-accordion .accordion-body {
  background: rgba(12, 12, 12, 0.6);
  color: var(--text-muted);
  padding: 1.5rem;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  background: var(--dark-bg);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
}

.map-content {
  text-align: center;
  color: var(--text-light);
}

.map-content i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.map-content h4 {
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 1rem;
}

.map-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
  .video-title {
    font-size: 3.5rem;
  }
  
  .page-title {
    font-size: 3rem;
  }
  
  .category-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .video-title {
    font-size: 3rem;
  }
  
  .video-subtitle {
    font-size: 1.2rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .effects-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form,
  .contact-sidebar {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .video-title {
    font-size: 2.5rem;
  }
  
  .video-subtitle {
    font-size: 1.1rem;
  }
  
  .video-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filter-buttons {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form,
  .contact-sidebar {
    padding: 1.5rem;
  }
  
  .contact-sidebar {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .video-title {
    font-size: 2rem;
  }
  
  .video-subtitle {
    font-size: 1rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .category-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .premium-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .video-nav {
    bottom: 20px;
  }
  
  .video-nav-btn {
    width: 12px;
    height: 12px;
  }
  .video-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
    width: 90%;
    max-width: 800px;
}
}
@media (max-width: 768px) {
  .mobile-center-btn {
    display: flex;
    justify-content: center;
  }
}
