/* Base Styles */
html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #d4af37;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
  height: 80px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: #d4af37 !important;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
}

.hero-section h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
  color: #f0f0f0;
}

.hero-logo {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hero Carousel Styles */
.hero-carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hero-carousel .carousel-item img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev {
  left: 20px;
}

.hero-carousel .carousel-control-next {
  right: 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(212, 175, 55, 1);
  transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-indicators {
  bottom: 20px;
}

.hero-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4af37;
  border: 2px solid white;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  margin: 0 auto 2rem;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
  background: #fff;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.team-card {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-card h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Services Section */
.services-section {
  background: #f8f9fa;
}

.service-highlight {
  border-left: 4px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-top-color: #d4af37;
}

.service-icon {
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  border-top: 4px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.process-step {
  padding: 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 3px solid #d4af37;
}

.process-step h5 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  background: #fff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 44, 44, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact-section {
  background: #f8f9fa;
  padding-bottom: 2rem;
}

.contact-card {
  border-top: 4px solid #d4af37;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-info-itemh4i {
  color: #d4af37;
}

.contact-info-item p {
  color: #666;
  font-size: 1rem;
}

.contact-benefits {
  max-width: 600px;
  margin: 0 auto;
}

.contact-benefits li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: #555;
}

.contact-benefits i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  color: #d4af37;
}

/* Footer */
.footer {
  margin-top: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.footer h5 {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  hyphens: auto;
  word-break: break-word;
}

.social-links a {
  transition: all 0.3s ease;
  color: #d4af37 !important;
}

.social-links a:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-logo {
    max-width: 300px;
  }

  .hero-carousel .carousel-item img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
    padding-bottom: 1rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }

  .hero-carousel .carousel-item img {
    height: 300px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero-carousel .carousel-control-prev {
    left: 10px;
  }

  .hero-carousel .carousel-control-next {
    right: 10px;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .contact-section {
    padding-bottom: 2rem;
  }

  .footer {
    margin-top: 1rem;
  }
}

/* Smooth Scroll */
.smooth-scroll {
  scroll-behavior: smooth;
}