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

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(212, 165, 116, 0.1);
  border-top-color: #d4a574;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #d4a574;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a,
.nav-item {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
}

.nav-item {
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a574;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-item:hover {
  color: #d4a574;
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  min-width: 220px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 4px;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 165, 116, 0.05);
  white-space: nowrap;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
  padding-left: 2rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-outline {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: inherit;
}

.btn-primary {
  background: #d4a574;
  color: #0a0a0a;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #c19a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-primary-large {
  background: #d4a574;
  color: #0a0a0a;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-size: 1.1rem;
}

.btn-primary-large:hover {
  background: #c19a6b;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #d4a574;
  border: 2px solid #d4a574;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: #d4a574;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #d4a574;
  border: 1px solid #d4a574;
  padding: 0.625rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  background: #d4a574;
  color: #0a0a0a;
  transform: translateX(5px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  margin-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/hero-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  color: #d4a574;
}

.hero-description {
  font-size: 1.25rem;
  color: #999999;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 165, 116, 0.2);
  border: 1px solid #d4a574;
  color: #d4a574;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.slider-btn:hover {
  background: #d4a574;
  color: #0a0a0a;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 2rem;
}

.slider-btn-next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

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

.dot.active {
  background: #d4a574;
  width: 40px;
  border-radius: 6px;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d4a574;
}

/* Services Preview */
.services-preview {
  padding: 6rem 0;
  background: #0f0f0f;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-feature-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.service-feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-feature-content p {
  color: #999999;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Price Section */
.price-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

.price-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: #d4a574;
  transform: translateX(10px);
  background: #1f1f1f;
}

.price-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price-info p {
  color: #999999;
  font-size: 0.95rem;
}

.price-amount {
  font-size: 1.75rem;
  color: #d4a574;
  font-weight: 700;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

.team-section-1 {
  padding: 0 0 6rem 0;
  background: #0f0f0f;
}

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

.team-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: #d4a574;
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
}

.team-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-info p {
  color: #d4a574;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-experience {
  color: #999999;
  font-size: 0.85rem;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

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

.why-card {
  background: #1a1a1a;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #d4a574;
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
}

.why-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(212, 165, 116, 0.2);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d4a574;
}

.why-card p {
  color: #999999;
  line-height: 1.6;
}

/* Showcase Section */
.showcase-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

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

.showcase-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: #d4a574;
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.showcase-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.showcase-info {
  padding: 1.5rem;
}

.showcase-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.showcase-info p {
  color: #999999;
}

/* Blog Section */
.blog-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

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

.blog-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: #d4a574;
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #999999;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.blog-excerpt {
  color: #999999;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #d4a574;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
  gap: 1rem;
}

/* Testimonial Section */
.testimonial-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

.testimonial-section-1 {
  padding: 0 0 6rem 0;
  background: #0f0f0f;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  padding: 3rem;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #d4a574;
}

.testimonial-quote p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #d4a574;
}

/* CTA Section */
.cta-section {
  position: relative;
  height: 80vh;
  background-image: url('/assets/images/photo-1629881544138-c45fc917eb81-1a885367-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  padding: 2rem;
}

.cta-content h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #999999;
  margin-bottom: 2.5rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: #999999;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #d4a574;
}

.newsletter-input::placeholder {
  color: #666666;
}

/* Contact Form */
.contact-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info-box {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #d4a574;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #999999;
}

.contact-details svg {
  color: #d4a574;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-form-wrapper {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #d4a574;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1rem;
  background: #0a0a0a;
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4a574;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Map Section */
.map-section {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

/* Footer */
.footer {
  background: #0f0f0f;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d4a574;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #d4a574;
}

.footer-col p {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d4a574;
}

.contact-info-footer li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #999999;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #d4a574;
  color: #0a0a0a;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  color: #666666;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid rgba(212, 165, 116, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4a574;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #d4a574;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #d4a574;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #999999;
  line-height: 1.8;
}

/* Portfolio/Gallery Section */
.portfolio-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 165, 116, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0a0a0a;
}

.gallery-overlay p {
  color: #1a1a1a;
}

/* Inner Page Hero */
.inner-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/images/photo-1667539916609-c706d5b7ed65-4c6662f0-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.inner-hero-content {
  text-align: center;
  z-index: 1;
}

.inner-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  color: #999999;
}

.breadcrumb a {
  color: #d4a574;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Blog Detail Page */
.blog-detail-section {
  padding: 6rem 1.5rem;
  background: #0f0f0f;
}

.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-detail-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  color: #999999;
}

.blog-detail-content h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.blog-detail-content p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

/* Services Detail */
.services-detail {
  padding: 6rem 0;
  background: #0f0f0f;
}

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

@media (max-width: 625px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #d4a574;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d4a574;
}

.service-card .price {
  font-size: 1.75rem;
  color: #d4a574;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.05);
}

.service-card ul li:last-child {
  border-bottom: none;
}

/* Pricing Plans Page */
.pricing-plans-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-plan-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  border: 2px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-plan-card:hover {
  transform: translateY(-10px);
  border-color: #d4a574;
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.pricing-plan-card.featured {
  border-color: #d4a574;
  background: #1f1f1f;
  transform: scale(1.05);
}

.pricing-plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4a574;
  color: #0a0a0a;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.plan-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #d4a574;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}

.plan-price .currency {
  font-size: 1.5rem;
  color: #d4a574;
  margin-top: 0.5rem;
}

.plan-price .amount {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0.25rem;
}

.plan-price .period {
  font-size: 1rem;
  color: #999999;
  align-self: flex-end;
  margin-bottom: 0.75rem;
}

.plan-header p {
  color: #999999;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: #cccccc;
  border-bottom: 1px solid rgba(212, 165, 116, 0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Testimonials Page */
.testimonials-page-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

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

.testimonial-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #d4a574;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.stars {
  color: #d4a574;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-info {
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-info span {
  color: #d4a574;
  font-size: 0.9rem;
}

/* About Page */
.about-content {
  padding: 6rem 0;
  background: #0f0f0f;
}



.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #999999;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.stat-number {
  font-size: 3rem;
  color: #d4a574;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #999999;
  font-size: 1.1rem;
}

/* Responsive Design */
/* Tablet View */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-container {
    padding: 1.25rem 2rem;
  }

  .nav-links {
    gap: 1.75rem;
    font-size: 0.95rem;
  }

  .services-grid,
  .contact-wrapper,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    max-width: 100%;
  }

  .pricing-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-plan-card.featured {
    transform: scale(1);
  }

  .pricing-plan-card.featured:hover {
    transform: translateY(-10px);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {

  .services-grid,
  .contact-wrapper,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

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


  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(10, 10, 10, 0.99);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 2rem;
    gap: 0;
    transition: left 0.4s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.mobile-open {
    left: 0;
  }

  .nav-links>a,
  .nav-links>.dropdown {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    font-size: 1.1rem;
  }

  .nav-links>a::after {
    display: none;
  }

  .dropdown {
    display: block;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0;
    margin-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }



  .dropdown:hover .dropdown-menu {
    max-height: 0;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 1rem;
  }

  .dropdown-menu a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-left: 2px solid rgba(212, 165, 116, 0.3);
  }

  .dropdown-menu a:hover {
    padding-left: 1.5rem;
  }

  .nav-links .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.75rem;
    padding: 0.25rem;
  }

  .hero-section {
    margin-top: 68px;
    min-height: 70vh;
    height: auto;
  }

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

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

  .section-title {
    font-size: 2rem;
  }


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

  .newsletter-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }


  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .slider-btn-prev {
    left: 0.5rem;
  }

  .slider-btn-next {
    right: 0.5rem;
  }

  .slider-dots {
    bottom: 1.5rem;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .inner-hero {
    height: 40vh;
    margin-top: 68px;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.5rem;
  }



  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }



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

  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-plan-card.featured {
    transform: scale(1);
  }

  .pricing-plan-card.featured:hover {
    transform: translateY(-10px);
  }

  .plan-price .amount {
    font-size: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-content h2 {
    font-size: 2rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .blog-detail-image {
    height: 300px;
  }
}