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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #0D0D0D;
}

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

.btn-primary {
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #D4AF37;
  color: #0D0D0D;
}

.btn-primary:hover {
  background-color: #D8B74B;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #D4AF37;
}

.btn-secondary:hover {
  background-color: #D4AF37;
  color: #0D0D0D;
}

.header {
  background-color: #0D0D0D;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #2E2E2E;
}

.header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 2rem;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  min-width: 0;
}

.header .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.header .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header .logo-text .brand-name {
  color: #D4AF37;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header .logo-text .brand-sub {
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0.8;
}

.header .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.header .nav a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
}

.header .nav a:hover,
.header .nav a:focus {
  color: #D4AF37;
}

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

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

.header .nav .btn-primary {
  padding: 10px 20px;
  font-size: 0.95rem;
  line-height: 1.2;
}

.header .mobile-menu {
  display: none;
  color: #D4AF37;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  background: #0D0D0D url("../img/hero.jpg") no-repeat center center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  max-width: 800px;
  padding: 0 12px;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .hero-content h1 .highlight {
  color: #D4AF37;
}

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.hero .hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero .hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero .hero-features .feature i {
  color: #D4AF37;
  font-size: 1.2rem;
}

.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about {
  background-color: #2E2E2E;
  padding: 80px 0;
}

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

.about .about-content .about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.about .about-content .stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.about .about-content .stats .stat {
  text-align: center;
}

.about .about-content .stats .stat .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #D4AF37;
}

.about .about-content .stats .stat .stat-label {
  color: #FFFFFF;
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #D4AF37;
}

.section-header p {
  font-size: 1.1rem;
  color: #FFFFFF;
}

.services {
  background-color: #0D0D0D;
  padding: 80px 0;
}

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

.services .services-grid .service-card {
  background-color: #2E2E2E;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services .services-grid .service-card:hover {
  transform: translateY(-5px);
  border: 2px solid #D4AF37;
}

.services .services-grid .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #D4AF37;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.services .services-grid .service-card .service-icon i {
  font-size: 2rem;
  color: #0D0D0D;
}

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

.services .services-grid .service-card p {
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.services .services-grid .service-card ul {
  list-style: none;
  text-align: left;
}

.services .services-grid .service-card ul li {
  padding: 0.3rem 0;
  color: #FFFFFF;
}

.services .services-grid .service-card ul li::before {
  content: '✓';
  color: #D4AF37;
  margin-right: 0.5rem;
  font-weight: bold;
}

.why-choose {
  background-color: #2E2E2E;
  padding: 80px 0;
}

.why-choose .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-choose .features-grid .feature-item {
  text-align: center;
  padding: 1.5rem;
}

.why-choose .features-grid .feature-item i {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.why-choose .features-grid .feature-item h4 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.why-choose .features-grid .feature-item p {
  color: #FFFFFF;
}

.testimonials {
  background-color: #0D0D0D;
  padding: 80px 0;
}

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

.testimonials .testimonials-grid .testimonial {
  background-color: #2E2E2E;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #D4AF37;
}

.testimonials .testimonials-grid .testimonial .testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonials .testimonials-grid .testimonial .testimonial-content p {
  font-style: italic;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.testimonials .testimonials-grid .testimonial .testimonial-author strong {
  color: #D4AF37;
  display: block;
  margin-bottom: 0.3rem;
}

.testimonials .testimonials-grid .testimonial .testimonial-author span {
  color: #FFFFFF;
  font-size: 0.9rem;
}

.contact {
  background-color: #2E2E2E;
  padding: 80px 0;
}

.contact .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact .contact-content .contact-info .contact-item i {
  font-size: 2rem;
  color: #D4AF37;
  width: 40px;
}

.contact .contact-content .contact-info .contact-item h4 {
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.contact .contact-content .contact-info .contact-item p {
  color: #FFFFFF;
}

.contact .contact-content .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact .contact-content .contact-form .form-group input,
.contact .contact-content .contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #2E2E2E;
  background-color: #0D0D0D;
  color: #FFFFFF;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact .contact-content .contact-form .form-group input:focus,
.contact .contact-content .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
}

.contact .contact-content .contact-form .form-group input::placeholder,
.contact .contact-content .contact-form .form-group textarea::placeholder {
  color: #6D6D6D;
}

.contact .contact-content .contact-form button {
  width: 100%;
  font-size: 1.1rem;
}

.footer {
  background-color: #0D0D0D;
  padding: 2rem 0;
  border-top: 1px solid #2E2E2E;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer .footer-content .footer-info h3 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.footer .footer-content .footer-info p {
  color: #FFFFFF;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

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

.footer .footer-content .footer-social a {
  color: #FFFFFF;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer .footer-content .footer-social a:hover {
  color: #D4AF37;
}

.footer .footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #2E2E2E;
}

.footer .footer-bottom p {
  color: #FFFFFF;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header .mobile-menu {
    display: block;
  }

  .header .header-inner {
    grid-template-columns: auto auto;
  }

  .header .logo-img {
    height: 42px;
  }

  .header .logo-text .brand-name {
    font-size: 1.3rem;
  }

  .header .logo-text .brand-sub {
    font-size: 0.7rem;
  }

  .header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background-color: #0D0D0D;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid #2E2E2E;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    margin-left: 0;
  }

  .header .nav.active {
    right: 0;
  }

  .header .nav a {
    font-size: 1.2rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .hero .hero-content p {
    font-size: 1rem;
  }

  .hero .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero .hero-buttons {
    flex-direction: column;
  }

  .about .stats {
    flex-direction: column;
    gap: 2rem;
  }

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

  .footer .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .services .services-grid,
  .why-choose .features-grid,
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header .logo-text .brand-sub {
    display: none;
  }

  .header .logo-text .brand-name {
    font-size: 1.1rem;
  }

  .header .logo-img {
    height: 36px;
  }

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

  .services,
  .about,
  .why-choose,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .header .nav {
    width: 100%;
    right: -100%;
  }
}
.footer {
  background-color:#0D0D0D;
  padding:2rem 0;
  border-top:1px solid #2E2E2E;
  color:#fff;
  font-family:Arial,sans-serif
}

.footer .footer-content{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  row-gap:1.5rem;
  margin-bottom:1rem
}

.footer-info h3{
  color:#D4AF37;
  font-size:1rem;
  font-weight:700;
  margin-bottom:.4rem
}

.footer-info p{
  color:#fff;
  font-size:.8rem;
  line-height:1.3;
  opacity:.9
}

.footer-social{
  display:flex;
  gap:.8rem;
  font-size:1.2rem
}

.footer-social a{
  color:#fff;
  transition:.2s;
  line-height:1
}
.footer-social a:hover{
  color:#D4AF37
}

.footer-dev{
  max-width:260px;
  text-align:right;
  font-size:.7rem;
  line-height:1.3;
  color:#fff;
  opacity:.8;
  display:flex;
  flex-direction:column;
  align-items:flex-end
}

.footer-dev-madeby{
  font-size:.7rem;
  opacity:.6;
  margin-bottom:.4rem
}

.footer-dev-brand{
  display:flex;
  align-items:center;
  gap:.5rem;
  text-decoration:none;
  color:#fff
}

.footer-dev-logo{
  height:24px;
  width:auto;
  object-fit:contain;
  border-radius:3px;
  background:transparent
}

.footer-dev-name{
  font-size:.7rem;
  line-height:1.2;
  font-weight:500;
  color:#fff;
  opacity:.8;
  max-width:200px
}

.footer-bottom{
  width:100%;
  border-top:1px solid #2E2E2E;
  text-align:center;
  padding-top:1rem
}

.footer-bottom p{
  color:#fff;
  font-size:.7rem;
  opacity:.6
}

@media(max-width:768px){
  .footer .footer-content{
    flex-direction:column;
    text-align:center;
    align-items:center
  }

  .footer-dev{
    text-align:center;
    align-items:center
  }

  .footer-dev-brand{
    justify-content:center
  }
}
