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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      background: #0a0a0a;
      color: #f5f5f5;
      line-height: 1.6;
    }

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

    .container {
      width: 90%;
      max-width: 1180px;
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212,175,55,0.15);
    }

    .topbar-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 1px;
      color: #d4af37;
    }

    .menu {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .menu a {
      color: #e5e5e5;
      font-size: 15px;
      transition: 0.3s;
    }

    .menu a:hover {
      color: #d4af37;
    }

    .btn {
      display: inline-block;
      padding: 14px 24px;
      border-radius: 12px;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-primary {
      background: #d4af37;
      color: #111;
      box-shadow: 0 14px 30px rgba(212,175,55,0.22);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
    }

    .btn-outline {
      border: 1px solid rgba(212,175,55,0.35);
      color: #d4af37;
    }

    .btn-outline:hover {
      background: rgba(212,175,55,0.10);
    }

    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(to right, rgba(0,0,0,0.90), rgba(0,0,0,0.45)),
        url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 34px;
      align-items: center;
      width: 100%;
      padding: 70px 0;
    }

    .hero-badge {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      margin-bottom: 18px;
      background: rgba(212,175,55,0.12);
      border: 1px solid rgba(212,175,55,0.25);
      color: #e7c55c;
      font-size: 14px;
    }

    .hero-text h1 {
      font-size: 58px;
      line-height: 1.08;
      margin-bottom: 18px;
    }

    .hero-text p {
      font-size: 19px;
      color: #dddddd;
      max-width: 640px;
      margin-bottom: 28px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .hero-stats {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .stat-card {
      min-width: 150px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 16px 18px;
    }

    .stat-card strong {
      display: block;
      font-size: 24px;
      color: #d4af37;
    }

    .hero-box {
      background: rgba(20,20,20,0.78);
      border: 1px solid rgba(212,175,55,0.16);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.30);
    }

    .hero-box h3 {
      font-size: 24px;
      margin-bottom: 10px;
      color: #d4af37;
    }

    .hero-box p {
      color: #d8d8d8;
      margin-bottom: 20px;
    }

    .mini-list {
      display: grid;
      gap: 14px;
    }

    .mini-item {
      background: #111;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 16px;
    }

    .mini-item strong {
      display: block;
      margin-bottom: 6px;
      color: #d4af37;
    }

    section {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      font-size: 40px;
      margin-bottom: 14px;
    }

    .section-subtitle {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 46px;
      color: #cfcfcf;
      font-size: 17px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: center;
    }

    .about-image img {
      width: 100%;
      min-height: 430px;
      object-fit: cover;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.28);
    }

    .about-text h3 {
      font-size: 32px;
      margin-bottom: 16px;
      color: #d4af37;
    }

    .about-text p {
      color: #dddddd;
      margin-bottom: 16px;
    }

    .about-list {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .about-list div {
      background: #111;
      border: 1px solid rgba(255,255,255,0.06);
      padding: 14px 16px;
      border-radius: 14px;
      color: #e5e5e5;
    }

    .services {
      background: #0e0e0e;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: linear-gradient(180deg, #141414, #101010);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 22px;
      padding: 28px;
      transition: 0.3s;
      box-shadow: 0 16px 30px rgba(0,0,0,0.18);
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(212,175,55,0.28);
    }

    .service-icon {
      font-size: 30px;
      margin-bottom: 12px;
    }

    .service-card h3 {
      font-size: 23px;
      margin-bottom: 10px;
    }

    .service-card p {
      color: #d5d5d5;
      margin-bottom: 16px;
    }

    .price {
      color: #d4af37;
      font-size: 24px;
      font-weight: bold;
    }

    .features {
      background: #0a0a0a;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .feature-card {
      background: #111;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      padding: 24px;
      transition: 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212,175,55,0.24);
    }

    .feature-card .icon {
      font-size: 30px;
      margin-bottom: 12px;
      color: #d4af37;
    }

    .feature-card h3 {
      margin-bottom: 10px;
      font-size: 21px;
    }

    .feature-card p {
      color: #d2d2d2;
    }

    .gallery {
      background: #0e0e0e;
    }

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

    .gallery-grid img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      border-radius: 20px;
      transition: 0.3s;
    }

    .gallery-grid img:hover {
      transform: scale(1.02);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .testimonial {
      background: #111;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 22px;
      padding: 26px;
    }

    .testimonial p {
      color: #e1e1e1;
      margin-bottom: 16px;
    }

    .testimonial strong {
      color: #d4af37;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
    }

    .contact-card,
    .hours-card {
      background: #111;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 24px;
      padding: 30px;
    }

    .contact-card h3,
    .hours-card h3 {
      font-size: 30px;
      margin-bottom: 16px;
      color: #d4af37;
    }

    .contact-info {
      display: grid;
      gap: 14px;
      margin-bottom: 22px;
      color: #e4e4e4;
    }

    .map-placeholder {
      margin-top: 24px;
      min-height: 220px;
      border-radius: 18px;
      border: 1px dashed rgba(212,175,55,0.32);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      color: #d0d0d0;
      background: rgba(255,255,255,0.02);
    }

    .hours-list {
      display: grid;
      gap: 10px;
    }

    .hours-item {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: #e4e4e4;
    }

    .cta-box {
      background: linear-gradient(135deg, #d4af37, #b99120);
      color: #111;
      text-align: center;
      padding: 44px 26px;
      border-radius: 28px;
      box-shadow: 0 20px 40px rgba(212,175,55,0.16);
    }

    .cta-box h2 {
      font-size: 40px;
      margin-bottom: 12px;
    }

    .cta-box p {
      max-width: 760px;
      margin: 0 auto 22px;
      font-size: 18px;
      color: #1c1c1c;
    }

    .cta-box .btn-primary {
      background: #111;
      color: #fff;
      box-shadow: none;
    }

    footer {
      padding: 30px 0;
      text-align: center;
      color: #b3b3b3;
      border-top: 1px solid rgba(255,255,255,0.06);
      background: #080808;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .about-grid,
      .services-grid,
      .feature-grid,
      .gallery-grid,
      .testimonial-grid,
      .contact-wrap {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .topbar-content {
        flex-direction: column;
      }

      .menu {
        justify-content: center;
      }

      .hero-grid,
      .about-grid,
      .services-grid,
      .feature-grid,
      .gallery-grid,
      .testimonial-grid,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .hero-text h1 {
        font-size: 38px;
      }

      .section-title {
        font-size: 30px;
      }

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

      .btn {
        width: 100%;
        text-align: center;
      }
    }
