
    :root {
      --gold: #D4AF37;
      --rose: #9C2D4C;
      --cream: #F8F1E9;
      --dark: #2C1F1F;
      --light-text: #5C4B4B;
      --white: #fff;
    }

    * { margin:0; padding:0; box-sizing:border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background: var(--cream);
      line-height: 1.7;
    }

    .feature-card p{
      font-size: 1rem !important;
      margin-bottom: 10px;
      margin-top: 5px;
    }

    #about{
      background: #fff;
    }

    h1, h2, h3 { font-family: 'Playfair Display', serif; }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: #342B29;
      z-index: 1000;
      border-bottom: 1px solid rgba(212,175,55,0.2);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
    }

    .logo img {
      max-height: 60px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 32px;
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    .hamburger {
      display: none;
      font-size: 1.8rem;
      color: var(--white);
      cursor: pointer;
    }

    .contact-bar {
      display: flex;
      align-items: center;
      gap: 16px;
      color: var(--gold);
      font-size: 0.95rem;
    }

    .whatsapp-btn {
      background: #25D366;
      color: white;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.9rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Hero */
    .hero {
      height: 100vh;
      min-height: 680px;
      position: relative;
      color: white;
      text-align: center;
    }

    .hero-slider .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: fade 24s infinite;
    }

    .slide:nth-child(1) { animation-delay: 0s; }
    .slide:nth-child(2) { animation-delay: 6s; }
    .slide:nth-child(3) { animation-delay: 12s; }
    .slide:nth-child(4) { animation-delay: 18s; }

    @keyframes fade {
      0%   { opacity: 0; }
      8%   { opacity: 1; }
      25%  { opacity: 1; }
      33%  { opacity: 0; }
      100% { opacity: 0; }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(44,31,31,0.78));
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
    }

   .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 5.1rem;
}

    .hero-content p {
      font-size: 1.35rem;
      max-width: 780px;
      margin: 0 auto 2.5rem;
    }

    .btn {
      background: var(--gold);
      color: var(--dark);
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.05rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
      min-width: 180px;
      border: none;
      cursor: pointer;
    }

    .btn:hover { background: #e6c15f; transform: translateY(-3px); }

    .btn-rose {
      background: var(--rose);
      color: white;
    }

    .btn-rose:hover { background: #b33c5c; }

    section { padding: 40px 0; }

    h2 { font-size: 2rem; text-align: center; margin-bottom: 1rem; }

    .section-subtitle {
      text-align: center;
      font-size: 1.15rem;
      color: var(--light-text);
      max-width: 720px;
      margin: 0 auto 3rem;
    }

    /* Grids */
    .about-grid, .features-grid, .services-grid, .gallery-grid, .testimonial-grid {
      display: grid;
      gap: 40px;
    }

    .about-grid        { grid-template-columns: 1fr 1fr; }
    .features-grid     { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
    .services-grid     { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
    .gallery-grid      { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .testimonial-grid  { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

    .feature-card, .service-card, .testimonial-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      padding: 15px 20px;
      transition: transform 0.3s;
    }

    .feature-card:hover, .service-card:hover {
      transform: translateY(-10px);
    }

    .service-img {
      height: 240px;
      background-size: cover;
      background-position: center;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      height: 320px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .gallery-item:hover img { transform: scale(1.08); }

    /* Contact Form */
    .contact-form {
      background: #342B29;
      padding: 50px 30px;
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0,0,0,0.1);
      max-width: 700px;
      margin: 0 auto;
    }

    input, select, textarea {
      width: 100%;
      padding: 14px 18px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      font-size: 1rem;
    }

    textarea { min-height: 130px; }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 20px;
    }

    .modal-content {
      background: white;
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      padding: 40px 30px;
      position: relative;
    }

    .close {
      position: absolute;
      top: 15px;
      right: 25px;
      font-size: 2rem;
      cursor: pointer;
      color: #777;
    }

    /* Floating WA */
    .float-whatsapp {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 8px 25px rgba(37,211,102,0.4);
      z-index: 999;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 992px) {
      .hero-content h1 { font-size: 3.8rem; }
      .hero-content p  { font-size: 1.2rem; }
      .about-grid      { grid-template-columns: 1fr; gap: 17px; }
    }

    @media (max-width: 768px) {
      nav {
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #342B29;
        padding: 30px 20px;
        gap: 25px;
        text-align: center;
      }

      .nav-links.active { display: flex; }

      .hamburger { display: block; }

      .contact-bar {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        display:none;
      }

      .hero {
        min-height: 80vh;
      }

      .hero-content h1 { font-size: 2.8rem; }
      .hero-content p  { font-size: 1.1rem; }

      .btn, .btn-rose {
        padding: 14px 30px;
        font-size: 1rem;
        margin: 10px 8px;
      }

      section { padding: 30px 0; }

      h2 { font-size: 1.6rem; }

      .contact-form { padding: 40px 20px; }

      .modal-content { padding: 35px 20px; }
    }

    @media (max-width: 576px) {
      .hero-content h1 { font-size: 2.3rem; }
      .hero-content p  { font-size: 1rem; }

      .btn, .btn-rose { 
        width: 100%; 
        margin: 12px 0; 
      }

      .service-img { height: 200px; }

      .gallery-grid, .testimonial-grid { gap: 25px; }

      .logo img { max-height: 50px; }
    }

    @media screen and (max-width: 768px) {

.hero-content h1 {
  font-size: 2rem;
    line-height: 3rem;
}
.hero-content{
  padding-top: 70px;
}
.hero-content p{
  line-height: 1.9rem;
}
}
