 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins', sans-serif;
    }

    body{
      background:#ffffff;
      color:#222;
      overflow-x:hidden;
    }

    :root{
      --gold:#d4af37;
      --dark:#111;
      --light:#fff;
    }

    header{
      width:100%;
      padding:20px 8%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:fixed;
      top:0;
      background:rgba(230, 250, 255, 0.95);
      backdrop-filter:blur(10px);
      z-index:1000;
      border-bottom:1px solid rgba(212,175,55,0.2);
    }

    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:1.5rem;
      font-weight:700;
      color:var(--dark);
    }

    .logo span{
      color:var(--gold);
    }

    nav a{
      text-decoration:none;
      color:#333;
      margin-left:30px;
      font-weight:500;
      transition:0.3s;
    }

    nav a:hover{
      color:var(--gold);
    }

    .hero{
      min-height:100vh;
      display:grid;
      grid-template-columns:1.1fr 0.9fr;
      align-items:center;
      padding:140px 8% 80px;
      gap:40px;
      background:linear-gradient(135deg,#ffffff,#faf7ef);
    }

    .hero-text{
      flex:1;
      min-width:300px;
    }

    .hero-text h1{
      font-size:4rem;
      line-height:1.1;
      margin-bottom:20px;
      color:#111;
    }

    .hero-text h1 span{
      color:var(--gold);
    }

    .hero-text p{
      font-size:1.1rem;
      color:#555;
      margin-bottom:30px;
      max-width:600px;
    }

    .btns{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }

    .btn{
      padding:15px 30px;
      border-radius:12px;
      text-decoration:none;
      font-weight:600;
      transition:0.3s;
      display:inline-block;
    }

    .btn-primary{
      background:var(--gold);
      color:#fff;
      box-shadow:0 10px 25px rgba(212,175,55,0.35);
    }

    .btn-primary:hover{
      transform:translateY(-3px);
    }

    .btn-secondary{
      border:2px solid var(--gold);
      color:var(--gold);
    }

    .btn-secondary:hover{
      background:var(--gold);
      color:#fff;
    }

    .hero-image{
      flex:1;
      display:flex;
      justify-content:center;
      min-width:300px;
    }

    .hero-image img{
      width:100%;
      max-width:420px;
      border-radius:50px 10px 50px 10px;
      box-shadow:0 25px 60px rgba(0,0,0,0.15);
      border:5px solid rgba(212,175,55,0.35);
      transform:rotate(-2deg);
    }

    section{
      padding:90px 8%;
    }

    .title{
      text-align:center;
      margin-bottom:60px;
    }

    .title h2{
      font-size:2.8rem;
      color:#111;
      margin-bottom:10px;
    }

    .title p{
      color:#666;
    }

    .services{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:30px;
    }

    .card{
      background:#fff;
      padding:40px 30px;
      border-radius:28px;
      border:1px solid rgba(212,175,55,0.15);
      transition:0.4s;
      box-shadow:0 12px 35px rgba(0,0,0,0.05);
      position:relative;
      overflow:hidden;
    }

    .card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:5px;
      background:var(--gold);
    }

    .card:hover{
      transform:translateY(-8px);
      border-color:var(--gold);
    }

    .card h3{
      margin-bottom:15px;
      color:var(--gold);
    }

    .card p{
      color:#555;
      line-height:1.7;
    }

    .about{
      display:flex;
      align-items:center;
      gap:50px;
      flex-wrap:wrap;
    }

    .about img{
      width:100%;
      max-width:420px;
      border-radius:25px;
      box-shadow:0 15px 40px rgba(0,0,0,0.1);
    }

    .about-text{
      flex:1;
      min-width:300px;
    }

    .about-text h2{
      font-size:2.8rem;
      margin-bottom:20px;
    }

    .about-text h2 span{
      color:var(--gold);
    }

    .about-text p{
      color:#555;
      line-height:1.8;
      margin-bottom:20px;
    }

    .contact{
      background:linear-gradient(135deg,#fff,#f8f8f8);
      border-top:1px solid rgba(212,175,55,0.2);
    }

    .contact-box{
      max-width:700px;
      margin:auto;
      text-align:center;
      padding:50px;
      border-radius:25px;
      background:#fff;
      box-shadow:0 15px 40px rgba(0,0,0,0.06);
    }

    .contact-box h2{
      font-size:2.5rem;
      margin-bottom:15px;
    }

    .contact-box p{
      color:#666;
      margin-bottom:30px;
    }

    footer{
      padding:30px;
      text-align:center;
      color:#777;
      border-top:1px solid rgba(0,0,0,0.08);
    }

    .whatsapp{
      position:fixed;
      bottom:25px;
      right:25px;
      width:65px;
      height:65px;
      background:#25d366;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:2rem;
      text-decoration:none;
      box-shadow:0 10px 25px rgba(37,211,102,0.4);
      z-index:999;
      transition:0.3s;
    }

    .whatsapp:hover{
      transform:scale(1.1);
    }

    @media(max-width:900px){
      .hero{
        grid-template-columns:1fr;
        text-align:center;
      }

      .hero-text h1{
        font-size:3rem;
      }

      .btns{
        justify-content:center;
      }

      nav{
        display:none;
      }
    }