/* Main Style Sheet  */
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins', sans-serif;
      background:#000;
      color:#fff;
      overflow-x:hidden;
      min-height:100vh;
      display:flex;
      flex-direction:column;
      background-image:url('../images/bg.png');
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    /* LAYOUT */

    :root{
      --site-max-width:1300px;
      --site-gutter:60px;
    }

    /* HEADER */

    .site-header{
      flex-shrink:0;
      padding:10px var(--site-gutter);
      border-bottom:1px solid rgba(255,255,255,.06);
    }

    .site-header__inner{
      max-width:var(--site-max-width);
      margin:0 auto;
      width:100%;
    }

    .logo-wrap img{
      width:600px;
      max-width:100%;
      height:auto;
      display:block;
    }

    /* NAVIGATION */

    .main-nav{
      display:flex;
      align-items:center;
      gap:35px;
    }

    .main-nav a{
      color:#fff;
      font-weight:600;
      font-size:16px;
      transition:0.3s ease;
      text-transform:uppercase;
      letter-spacing:1px;
    }

    .main-nav a:hover{
      color:#ffb400;
    }

    /* MOBILE */

    @media(max-width:768px){

      :root{
        --site-gutter:20px;
      }

      .site-header{
        padding:16px var(--site-gutter);
      }

      .logo-wrap img{
        width:220px;
      }

      .main-nav{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
      }

      .main-nav a{
        font-size:14px;
      }
    }

    /* HERO SECTION */

    .hero{
      position:relative;
      flex:1;
      width:100%;
      background:
        linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
        url('images/flyer.jpg') center center/cover no-repeat;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:48px var(--site-gutter) 64px;
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:
      linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.45));
    }

    .hero-content{
      position:relative;
      z-index:2;
      max-width:var(--site-max-width);
      width:100%;
      margin:0 auto;
      display:grid;
      grid-template-columns:1fr 500px;
      gap:50px;
      align-items:center;
    }


    .left-content h3{
      font-family:'Oswald', sans-serif;
      color:#ffb400;
      font-size:26px;
      letter-spacing:2px;
      margin-bottom:15px;
      text-transform:uppercase;
    }

    .left-content h1{
      font-family:'Oswald', sans-serif;
      font-size:90px;
      line-height:0.95;
      text-transform:uppercase;
      margin-bottom:25px;
      color:#fff;
      text-shadow:0 4px 20px rgba(0,0,0,.7);
    }

    .left-content h1 span{
      color:#ffb400;
      display:block;
    }

    .hero-text{
      font-size:20px;
      line-height:1.7;
      color:#ddd;
      max-width:700px;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      flex-wrap:wrap;
      gap:20px;
      margin-bottom:40px;
    }

    .btn{
      padding:18px 34px;
      border-radius:8px;
      font-weight:700;
      font-size:16px;
      transition:0.3s ease;
      display:inline-block;
    }

    .btn-primary{
      background:#ffb400;
      color:#000;
    }

    .btn-primary:hover{
      background:#fff;
      transform:translateY(-3px);
    }

    .btn-secondary{
      border:2px solid #fff;
      color:#fff;
    }

    .btn-secondary:hover{
      background:#fff;
      color:#000;
    }

    /* FEATURES */

    .features{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
      max-width:700px;
    }

    .feature-box{
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.08);
      backdrop-filter:blur(8px);
      border-radius:14px;
      padding:20px;
    }

    .feature-box h4{
      color:#ffb400;
      margin-bottom:8px;
      font-size:20px;
      font-family:'Oswald', sans-serif;
      letter-spacing:1px;
    }

    .feature-box p{
      color:#ddd;
      font-size:15px;
      line-height:1.6;
    }

    /* RIGHT CARD */

    .offer-card{
      background:rgba(10,10,10,.85);
      border:2px solid #ffb400;
      border-radius:20px;
      padding:40px;
      box-shadow:0 20px 60px rgba(0,0,0,.6);
    }

    .offer-card h2{
      font-family:'Oswald', sans-serif;
      font-size:46px;
      line-height:1.1;
      margin-bottom:20px;
      text-transform:uppercase;
    }

    .offer-card h2 span{
      color:#ffb400;
    }

    .offer-card ul{
      list-style:none;
      margin-bottom:30px;
    }

    .offer-card ul li{
      padding:10px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-size:16px;
      color:#ddd;
    }

    .offer-card ul li::before{
      content:"✓";
      color:#ffb400;
      font-weight:bold;
      margin-right:10px;
    }

    .phone-box{
      background:#ffb400;
      color:#000;
      padding:20px;
      border-radius:14px;
      text-align:center;
      margin-bottom:20px;
    }

    .phone-box p{
      font-weight:600;
      margin-bottom:8px;
      text-transform:uppercase;
      letter-spacing:1px;
    }

    .phone-box h3{
      font-size:42px;
      font-family:'Oswald', sans-serif;
    }

    .small-text{
      text-align:center;
      color:#bbb;
      font-size:15px;
      line-height:1.6;
    }

    /* RESPONSIVE */

    @media(max-width:1100px){

      .hero-content{
        grid-template-columns:1fr;
      }

      .left-content h1{
        font-size:70px;
      }

      .offer-card{
        max-width:700px;
      }
    }

    @media(max-width:768px){

      .hero{
        padding:32px var(--site-gutter) 48px;
      }

      .left-content h1{
        font-size:52px;
      }

      .hero-text{
        font-size:17px;
      }

      .features{
        grid-template-columns:1fr;
      }

      .offer-card{
        padding:30px;
      }

      .offer-card h2{
        font-size:38px;
      }

      .phone-box h3{
        font-size:34px;
      }
    }

    /* FOOTER */

    .site-footer{
      flex-shrink:0;
      background:#0a0a0a;
      border-top:1px solid rgba(255,180,0,.25);
      padding:50px var(--site-gutter) 40px;
    }

    .site-footer__inner{
      max-width:var(--site-max-width);
      margin:0 auto;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:24px;
      text-align:center;
    }

    .site-footer__social{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:16px;
      flex-wrap:wrap;
    }

    .site-footer__social-link{
      display:flex;
      align-items:center;
      justify-content:center;
      width:48px;
      height:48px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      color:#fff;
      transition:0.3s ease;
    }

    .site-footer__social-link svg{
      width:20px;
      height:20px;
      fill:currentColor;
    }

    .site-footer__social-link:hover{
      color:#000;
      background:#ffb400;
      border-color:#ffb400;
      transform:translateY(-3px);
    }

    .site-footer__phone{
      font-family:'Oswald', sans-serif;
      font-size:28px;
      letter-spacing:1px;
      color:#ffb400;
      transition:0.3s ease;
    }

    .site-footer__phone:hover{
      color:#fff;
    }

    .site-footer__copyright{
      color:#888;
      font-size:14px;
      line-height:1.6;
    }

    @media(max-width:768px){

      .site-footer{
        padding:40px var(--site-gutter) 32px;
      }

      .site-footer__phone{
        font-size:24px;
      }
    }

    /* QUOTE MODAL */

    body.quote-modal-open{
      overflow:hidden;
    }

    .quote-modal{
      position:fixed;
      inset:0;
      z-index:1000;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:20px;
    }

    .quote-modal[hidden]{
      display:none;
    }

    .quote-modal__overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.82);
      backdrop-filter:blur(4px);
    }

    .quote-modal__dialog{
      position:relative;
      z-index:1;
      width:100%;
      max-width:560px;
      max-height:90vh;
      overflow-y:auto;
      background:rgba(10,10,10,.95);
      border:2px solid #ffb400;
      border-radius:20px;
      padding:40px 36px 36px;
      box-shadow:0 24px 80px rgba(0,0,0,.7);
    }

    .quote-modal__close{
      position:absolute;
      top:14px;
      right:18px;
      background:none;
      border:none;
      color:#fff;
      font-size:32px;
      line-height:1;
      cursor:pointer;
      padding:4px 8px;
      transition:color 0.3s ease;
    }

    .quote-modal__close:hover{
      color:#ffb400;
    }

    .quote-modal__title{
      font-family:'Oswald', sans-serif;
      font-size:38px;
      line-height:1.1;
      text-transform:uppercase;
      margin-bottom:12px;
    }

    .quote-modal__title span{
      color:#ffb400;
    }

    .quote-modal__intro{
      color:#bbb;
      font-size:15px;
      line-height:1.6;
      margin-bottom:28px;
    }

    .quote-form__row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .quote-form__field{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-bottom:18px;
    }

    .quote-form__field span{
      font-size:14px;
      font-weight:600;
      color:#ddd;
      text-transform:uppercase;
      letter-spacing:0.5px;
    }

    .quote-form__field input,
    .quote-form__field textarea{
      width:100%;
      padding:14px 16px;
      border:1px solid rgba(255,255,255,.15);
      border-radius:8px;
      background:rgba(255,255,255,.06);
      color:#fff;
      font-family:'Poppins', sans-serif;
      font-size:15px;
      transition:border-color 0.3s ease, background 0.3s ease;
    }

    .quote-form__field input:focus,
    .quote-form__field textarea:focus{
      outline:none;
      border-color:#ffb400;
      background:rgba(255,255,255,.08);
    }

    .quote-form__field textarea{
      resize:vertical;
      min-height:110px;
    }

    .quote-form__submit{
      width:100%;
      border:none;
      cursor:pointer;
      margin-top:8px;
    }

    .quote-form__submit:disabled{
      opacity:0.7;
      cursor:not-allowed;
      transform:none;
    }

    .quote-form-status{
      font-size:14px;
      line-height:1.5;
      margin-bottom:12px;
      padding:12px 14px;
      border-radius:8px;
    }

    .quote-form-status--success{
      background:rgba(76,175,80,.15);
      border:1px solid rgba(76,175,80,.4);
      color:#a5d6a7;
    }

    .quote-form-status--error{
      background:rgba(244,67,54,.12);
      border:1px solid rgba(244,67,54,.35);
      color:#ef9a9a;
    }

    @media(max-width:600px){

      .quote-modal__dialog{
        padding:32px 22px 24px;
      }

      .quote-modal__title{
        font-size:30px;
        padding-right:30px;
      }

      .quote-form__row{
        grid-template-columns:1fr;
        gap:0;
      }
    }