:root {
  --primary-orange: #ff6b35;
  --primary-orange-dark: #e55a2b;
  --primary-orange-light: #ff8c5a;
  --dark-bg: #1a1a1a;
  --darker-bg: #0d0d0d;
  --gray-bg: #2a2a2a;
  --light-gray: #f5f5f5;
  --medium-gray: #888888;
  --white: #ffffff;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 5px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 50px rgba(255, 107, 53, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.d-none {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-bg);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange-dark);
}

/* Navbar */
.navbar {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-orange-dark)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-brand span {
  color: var(--primary-orange);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-orange) !important;
}

.nav-link:hover::after {
  width: 80%;
}

.language-selector {
  display: flex;
  gap: 0.25rem;
  margin-left: 1rem;
}

.language-selector .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: var(--transition-smooth);
}

.language-selector .btn:hover,
.language-selector .btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 107, 53, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--darker-bg);
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.4) 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

.hero-slide-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-slide-2 {
  background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
}

.hero-slide-3 {
  background: linear-gradient(135deg, #434343 0%, #1a1a1a 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-orange-dark)
  );
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--white);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  background: linear-gradient(
    135deg,
    var(--primary-orange-light),
    var(--primary-orange)
  );
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  border-radius: 50px;
  color: var(--white);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-custom:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark-bg);
}

.btn-outline-custom i {
  font-size: 1.25rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title span {
  color: var(--primary-orange);
}

.section-subtitle {
  color: var(--medium-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-section {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, var(--gray-bg) 0%, var(--dark-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B35' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-image i {
  font-size: 5rem;
  color: var(--primary-orange);
  opacity: 0.5;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.about-badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--primary-orange);
}

.about-content p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--dark-bg);
  font-weight: 500;
}

.about-highlights li i {
  width: 30px;
  height: 30px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
}

/* Services Section */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 53, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 107, 53, 0.05)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-orange);
}

.service-card:hover .service-icon {
  background: var(--primary-orange);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.service-card p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 1rem;
  color: var(--primary-orange-dark);
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  /* aspect-ratio: 4/3; */
  box-shadow: var(--shadow-card);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-bg) 0%, var(--dark-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-item-inner i {
  font-size: 3rem;
  color: var(--primary-orange);
  opacity: 0.3;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.9) 0%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.1);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
}

.gallery-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  background: var(--gray-bg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.lightbox-content i {
  font-size: 5rem;
  color: var(--primary-orange);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--primary-orange-dark);
  transform: rotate(90deg);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--dark-bg);
  color: var(--white);
}

.testimonial-card {
  background: var(--gray-bg);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  margin: 0 1rem;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary-orange);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
}

.testimonial-info h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-info span {
  color: var(--primary-orange);
  font-size: 0.875rem;
}

.carousel-indicators-custom {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-indicators-custom button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: none;
  transition: var(--transition-smooth);
}

.carousel-indicators-custom button.active {
  background: var(--primary-orange);
  width: 30px;
  border-radius: 10px;
}

/* Clients Section */
.clients-section {
  background: var(--light-gray);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.client-logo {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.client-logo span {
  color: var(--medium-gray);
  font-weight: 600;
  font-size: 0.875rem;
}

.clients-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--medium-gray);
  font-style: italic;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 3rem;
  height: 100%;
  color: var(--white);
}

.contact-info-card h3 {
  margin-bottom: 2rem;
}

.contact-info-card h3 span {
  color: var(--primary-orange);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  color: var(--primary-orange);
  font-size: 1.25rem;
}

.contact-item-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item-text p,
.contact-item-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-item-text a:hover {
  color: var(--primary-orange);
}

.quick-contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.quick-contact-btn {
  flex: 1;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.quick-contact-btn.call {
  background: var(--primary-orange);
  color: var(--white);
}

.quick-contact-btn.sms {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-contact-btn:hover {
  transform: translateY(-3px);
}

.quick-contact-btn.call:hover {
  background: var(--primary-orange-dark);
  color: var(--white);
}

.quick-contact-btn.sms:hover {
  background: var(--white);
  color: var(--dark-bg);
}

.contact-form-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 3rem;
}

.contact-form-card h3 {
  margin-bottom: 2rem;
}

.contact-form-card h3 span {
  color: var(--primary-orange);
}

.form-floating {
  margin-bottom: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--white);
  transition: var(--transition-smooth);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-floating > label {
  color: var(--medium-gray);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-orange-dark)
  );
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  margin-top: 1rem;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.form-success {
  display: none;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #28a745;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--primary-orange);
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-links h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--primary-orange);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-language-selector {
  display: flex;
  gap: 0.5rem;
}

.footer-language-selector .btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-language-selector .btn:hover,
.footer-language-selector .btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-badge {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-image {
    height: 300px;
    margin-bottom: 2rem;
  }

  .about-badge {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 107, 53, 0.2);
  border-top-color: var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
