@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --primary-color: #f39c12; /* Industrial Orange/Yellow */
  --secondary-color: #2c3e50;
  --dark-bg: #111111;
  --darker-bg: #0a0a0a;
  --text-light: #f5f6fa;
  --text-muted: #a4b0be;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

/* Navigation */
.navbar-section {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.logo-container {
  display: flex;
  align-items: center;
}

.site-logo {
  max-height: 70px;
  width: auto;
  transition: var(--transition);
}

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

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

.nav-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

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

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

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

.btn-book-now {
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-book-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
}

/* Hero Slider Section */
.hero-slider {
  height: 80vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  animation: zoomInOut 10s infinite alternate;
}

@keyframes zoomInOut {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.slider-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.slider-content .hero-subtitle,
.slider-content .hero-title,
.slider-content .hero-desc,
.slider-content .hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.slider-content .hero-subtitle { animation-delay: 0.2s; }
.slider-content .hero-title { animation-delay: 0.4s; }
.slider-content .hero-desc { animation-delay: 0.6s; }
.slider-content .hero-buttons { animation-delay: 0.8s; }

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

.hero-subtitle {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

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

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot:hover {
  background-color: var(--primary-color);
}

.dot.active {
  background-color: transparent;
  border-color: var(--primary-color);
  transform: scale(1.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
}

/* Welcome Section */
.welcome-section {
  padding: 100px 5% 40px 5%;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.welcome-section + .service-section {
  padding-top: 40px;
}

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

.welcome-text-wrapper {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.welcome-text-wrapper.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.welcome-text-wrapper h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.welcome-text-wrapper h2 span {
  color: var(--primary-color);
}

.welcome-text-wrapper p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.welcome-image-wrapper {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.2s;
}

.welcome-image-wrapper.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.welcome-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  z-index: 0;
  transition: var(--transition);
}

.welcome-image-wrapper:hover::before {
  top: 15px;
  left: 15px;
}

.welcome-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  display: block;
}

.welcome-img:hover {
  transform: scale(1.03);
}

/* About Section */
.about-section {
  padding: 100px 5%;
  background-color: var(--darker-bg);
}

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

.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.02);
}

.about-text-wrapper h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-text-wrapper h2 span {
  color: var(--primary-color);
}

.about-text-wrapper p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Service Section */
.service-section {
  padding: 100px 5%;
  background-color: var(--dark-bg);
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
}
.section-header h2 span {
  color: var(--primary-color);
}

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

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(243, 156, 18, 0.1), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
  pointer-events: none;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.1);
}

.service-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--primary-color);
  transition: var(--transition);
}

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

.service-img-wrapper {
  overflow: hidden;
}

.service-card-content {
  padding: 30px;
}

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

.service-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card-content p {
  color: var(--text-muted);
}

.service-image-display {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-image-display img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.service-image-display img:hover {
  transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 5%;
  background-color: var(--darker-bg);
  text-align: center;
}

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

.feature-box {
  background: var(--dark-bg);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0;
  background: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  opacity: 0.95;
}

.feature-box:hover::before {
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(243, 156, 18, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(243, 156, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.6s ease;
}

.feature-box:hover .feature-icon {
  background: var(--dark-bg);
  transform: rotateY(360deg) scale(1.1);
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
  transition: var(--transition);
}

.feature-box p {
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.6;
}

.feature-box:hover h3,
.feature-box:hover p {
  color: var(--darker-bg);
}

/* Our Work Section */
.our-work-section {
  padding: 100px 5%;
  background-color: var(--dark-bg);
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.work-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.work-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.work-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(243, 156, 18, 0.9), rgba(243, 156, 18, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.work-overlay i {
  font-size: 3rem;
  color: var(--dark-bg);
  margin-bottom: 15px;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
}

.work-overlay span {
  color: var(--dark-bg);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
}

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

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

.work-item:hover .work-overlay i {
  transform: scale(1);
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 5%;
  background-color: var(--darker-bg);
  text-align: center;
  overflow: hidden;
}

.testimonial-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--dark-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.15);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}

.review-text {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.client-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-bg);
  font-weight: 800;
}

.client-details h4 {
  color: var(--primary-color);
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.client-details span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 100px 5%;
  background-color: var(--darker-bg);
  text-align: center;
}

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

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(243, 156, 18, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  opacity: 0.8;
  transition: 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .video-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.6);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

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

.gallery-overlay span {
  color: var(--darker-bg);
  font-size: 1.5rem;
  font-weight: 800;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Contact Section */
.contact-section {
  padding: 100px 5%;
  background-color: var(--dark-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

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

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0,0,0,0.8);
}

/* Footer Section Updates */
.footer-section {
  background-color: #0d0d0d;
  padding: 80px 5% 0;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  overflow: hidden;
}

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

.footer-logo {
  max-height: 70px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Ensure it's visible if it's dark text */
  transition: var(--transition);
}

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

.footer-col h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-col:hover h3::after {
  width: 100%;
}

.footer-col p {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  color: var(--text-light);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}

.social-links a:hover::before {
  top: 0;
}

.social-links a:hover {
  color: var(--dark-bg);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 0.95rem;
  position: relative;
}

.footer-col ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.footer-col ul li a:hover::before {
  opacity: 1;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: var(--transition);
}

.contact-details li:hover {
  color: var(--text-light);
}

.contact-details li i {
  color: var(--primary-color);
  margin-top: 5px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-bottom span.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a3e635; /* Custom green color like image reference */
  color: var(--darker-bg);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  margin: 0 8px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(163, 230, 53, 0.5);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(243, 156, 18, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

.float-btn::before, .float-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: floatRipple 2s infinite linear;
}

.float-btn::after {
  animation-delay: 1s;
}

.call-btn {
  background-color: var(--primary-color);
}
.call-btn::before, .call-btn::after {
  background-color: var(--primary-color);
}

.wa-btn {
  background-color: #25d366; /* WhatsApp Green */
}
.wa-btn::before, .wa-btn::after {
  background-color: #25d366;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes floatRipple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Lightbox Modal */
.lightbox {
  display: none; 
  position: fixed; 
  z-index: 2000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.9); 
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(243, 156, 18, 0.4);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease;
  object-fit: contain;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text-light);
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 40px;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  z-index: 2001;
  user-select: none;
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--primary-color);
  background: rgba(255,255,255,0.1);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

/* Responsive Utilities */
.mobile-only {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .welcome-container, .about-container, .contact-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .logo-container h1 {
    font-size: 1.6rem;
  }
  
  .navbar-section {
    padding: 15px 5%;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--darker-bg);
    width: 100%;
    text-align: center;
    padding: 40px 0;
    transition: 0.4s;
    border-bottom: 1px solid var(--glass-border);
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
    margin-top: 20px;
  }
  
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .float-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Page Headers for sub pages */
.page-header {
  padding: 150px 5% 50px;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../images/hero.jpg') center/cover;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  animation: slideUp 0.8s ease-out;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  animation: slideUp 1s ease-out;
}
