@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Poppins:wght@400;500;600&display=swap');

    .footer-section{
      background:
        radial-gradient(600px 300px at 10% -10%, rgba(255,184,108,0.25), transparent 60%),
        linear-gradient(180deg,#7b1e1e,#4d0f0f);
      padding:90px 5% 20px;
      color:#fff;
      font-family:"Poppins", sans-serif;
    }

    .footer-container{
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:55px;
      padding-bottom:40px;
      border-bottom:1px solid rgba(255,255,255,0.2);
    }

    /* TITLES */
    .footer-title-main{
      font-family:"Cinzel", serif;
      font-size:26px;
      letter-spacing:2px;
      color:#ffddb3;
      margin-bottom:6px;
    }

    .footer-subtitle{
      font-family:"Cinzel", serif;
      font-size:18px;
      letter-spacing:3px;
      color:#ffb86c;
      margin-bottom:14px;
    }

    .footer-title{
      font-size:18px;
      color:#ffddb3;
      margin-bottom:14px;
      font-weight:600;
      position:relative;
    }

    .footer-title::after{
      content:"";
      width:40px;
      height:2px;
      background:#ffb86c;
      position:absolute;
      left:0;
      bottom:-6px;
    }

    /* TEXT */
    .footer-box p{
      font-size:14px;
      line-height:1.8;
      color:#f3f3f3;
      margin-bottom:10px;
    }

    .footer-box strong{
      color:#ffddb3;
    }

    /* LINKS */
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .footer-links li{
      margin-bottom:9px;
    }

    .footer-links a{
      text-decoration:none;
      color:#f3f3f3;
      font-size:14px;
      transition:0.3s;
      position:relative;
    }

    .footer-links a::before{
      content:"›";
      margin-right:6px;
      color:#ffb86c;
    }

    .footer-links a:hover{
      color:#ffb86c;
      padding-left:6px;
    }

    /* SOCIAL */
    .footer-social{
      margin-top:14px;
      display:flex;
      gap:12px;
    }

    .footer-social a{
      width:38px;
      height:38px;
      border-radius:50%;
      background:rgba(255,255,255,0.15);
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      font-size:16px;
      color:#fff;
      transition:0.3s;
    }

    .footer-social a:hover{
      background:#ffb86c;
      color:#000;
      transform:translateY(-3px);
    }

    /* BOTTOM */
    .footer-bottom{
      text-align:center;
      padding-top:18px;
      font-size:13px;
      color:#ddd;
    }

    .footer-credit{
      margin-top:6px;
      font-size:13px;
      color:#ffddb3;
      letter-spacing:0.5px;
    }

    .footer-credit span{
      color:#ffb86c;
      font-weight:600;
    }

    /* RESPONSIVE */
    @media(max-width:992px){
      .footer-container{
        grid-template-columns:1fr 1fr;
      }
    }

    @media(max-width:576px){
      .footer-container{
        grid-template-columns:1fr;
        gap:35px;
      }

      .footer-section{
        padding:70px 4% 15px;
      }

      .footer-title-main{
        font-size:22px;
      }

      .footer-subtitle{
        font-size:16px;
      }
    }