:root {
  --bg-dark: #1a1410;
  --bg-card: #2a1f1a;
  --bg-overlay: rgba(26, 20, 16, 0.92);
  --text-main: #ffffff;
  --text-muted: #b8a593;
  --accent: #FFD700; /* Solid Yellow */
  --accent-dark: #DAA520;
  --accent-glow: rgba(255, 215, 0, 0.3);
  --primary-gradient: #FFD700; /* Solid yellow instead of gradient */
  --wood-dark: #3d2817;
  --wood-light: #6b4423;
  --font-main: "Outfit", sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(8px) brightness(0.3);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 15px var(--accent-glow);
  border: none;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-overlay);
  background-color: rgb(20, 20, 20);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  margin: 15px 20px 0 20px;
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.badge {
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-bg {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(11, 11, 15, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-dark);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 215, 0, 0.05),
    transparent 40%
  );
  opacity: 0;
  transition: var(--transition);
}

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

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: var(--accent);
  color: #000;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Features Section */
.features {
  padding: 100px 0;
  position: relative;
}

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

.feature-list {
  list-style: none;
  margin-top: 40px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.feature-list p {
  color: var(--text-muted);
}

.abstract-box {
  width: 100%;
  max-width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #1a1a20, #000);
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.master-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.abstract-box:hover .master-image {
  transform: scale(1.1);
}

.abstract-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}


@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* CTA Section */
.cta {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 215, 0, 0.1), transparent);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(248, 253, 245, 0.103);
}

.contact-item.whatsapp {
  background: #25d366;
  color: white;
}
.contact-item.whatsapp:hover {
  background: #1a8f45;
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  background-color: rgba(22, 22, 22, 0.747);
  border-radius: 20px 0px 0px 0px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-left h3 {
  color: var(--text-main);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.footer-left p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.footer-left address {
  font-style: normal;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 15px;
}

.footer-left address a {
  color: var(--accent);
  transition: var(--transition);
  text-decoration: none;
}

.footer-left address a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer-center h4,
.footer-right h4 {
  color: var(--text-main);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.footer-center ul li {
  margin-bottom: 10px;
}

.footer-center ul li a {
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}

.footer-center ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

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


/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-play-state: paused;
}

.hero .fade-in {
  animation-play-state: running;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services,
  .features,
  .about,
  .cta {
    padding: 60px 0;
  }

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

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 67px;
    right: -110%;
    width: 100%;
    flex-direction: column;
    background: var(--bg-card);
    padding: 40px;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
    background-color: rgb(20, 20, 20);
    border-radius: 0px 0px 15px 15px;
  }

  .navbar.scrolled {
    margin: 10px 10px 0 10px;
    border-radius: 16px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-list li {
    margin-bottom: 20px;
  }

  .abstract-box {
    height: 300px;
    max-width: 300px;
  }

  .cta-content {
    padding: 40px 20px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .contact-methods {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-center ul li a:hover {
    padding-left: 0;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* About Section Styles */
.about {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

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

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: var(--transition);
}



.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(212, 165, 116, 0.15);
  border-color: var(--accent);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.stat-item-1 {
width: 145px;
height: 132px;
}

.stat-item-2 {
  width: 170px;
height: 132px;
}

.stat-item-3 {
  width: 135px;
height: 132px;
}
/* Additional responsive rules for About section */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 20px;
    min-height: auto;
    width: 100%;
  }

  .stat-item h3 {
    font-size: 2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05), transparent 60%);
  pointer-events: none;
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 215, 0, 0.08),
    transparent 50%
  );
  border-radius: 24px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.quote-icon {
  color: var(--accent);
  opacity: 0.3;
  width: 40px;
  height: 40px;
}

.testimonial-text {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
}

.rating {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Responsive for Testimonials */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

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

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .author-info h4 {
    font-size: 1rem;
  }
}
