:root{
  --primary-brown:#4E3B2C;
  --secondary-beige:#F8F4EB;
  --dark-bg:#2A2118;
  --copper1:#C17A4C;
  --copper2:#B3663A;
  --radius:18px;
}
a{
  text-decoration:none;
  color:inherit;
}
html{
  scroll-behavior:smooth;
}
/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;}
body{
  font-family:'Montserrat',sans-serif;
  background:var(--secondary-beige);
  color:#333;
  line-height:1.7;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:120px 0;
}

@media(max-width:768px){
  section{
    padding:70px 0;
  }
}
@media(max-width:768px){

  .hero-video{
    padding-bottom:40px;
  }

  .trust-strip{
    padding:25px 0;
  }

  .wedding-feature{
    padding:80px 0;
  }

  .luxury-cta{
    padding:80px 0;
  }

}
.section-header{
  margin-bottom:70px;
}

.section-header h2{
  margin-bottom:12px;
}

.section-header p{
  max-width:680px;
  margin:0 auto;
  font-size:15px;
  line-height:1.8;
  margin-top:8px;
}
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}
section{
    position:relative;
}

section::after{
    content:"";
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    height:80px;
    background:linear-gradient(
        to bottom,
        rgba(248,244,235,0) 0%,
        rgba(248,244,235,1) 100%
    );
    pointer-events:none;
}
.hero-video::after,
.wedding-feature::after,
.luxury-cta::after{
    display:none;
}
@media(max-width:768px){
    p{
        line-height:1.9;
    }

    h2{
        line-height:1.3;
    }
}
.premium-section{
    position:relative;
}

.premium-section::before{
    content:"";
    position:absolute;
    top:-40px;
    left:0;
    width:100%;
    height:60px;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        transparent
    );
    opacity:0.05;
}
/* ================= ABOUT SECTION ================= */

.about-section{
    padding:140px 0;
    position:relative;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* IMAGE WRAPPER — FIXED RATIO CONTROL */
.about-image{
    width:100%;
    aspect-ratio:3/2;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(0,0,0,0.08);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.04);
}

/* TEXT SIDE */

.about-label{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--copper1);
    display:block;
    margin-bottom:18px;
}

.about-content h2{
    margin-bottom:22px;
    line-height:1.3;
}

.about-subline{
    display:block;
    margin-bottom:18px;
    font-size:13px;
    color:#777;
    letter-spacing:1px;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .about-section{
        padding:70px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content{
        text-align:center;
    }

    .about-label{
        margin-bottom:14px;
    }

    .about-content p{
        font-size:15px;
        line-height:1.8;
    }

    .about-image{
        border-radius:22px;
        box-shadow:0 20px 50px rgba(0,0,0,0.08);
    }
}
/* ================= HEADER ================= */

.main-header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    padding:20px 0;
    background:rgba(42,33,24,0.35);
    backdrop-filter:blur(10px);
    transition:all .4s ease;
}

.main-header.scrolled{
    background:rgba(28,21,16,0.55);
    backdrop-filter:blur(14px);
    padding:14px 0;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-main{
  font-size:22px;
  font-weight:700;
  color:#fff;
}

.logo-main span{color:var(--copper1);}

.logo-sub{
  font-size:10px;
  letter-spacing:2px;
  color:#d1c6b8;
}

.nav-menu{
  display:flex;
  gap:25px;
}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  position:relative;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:linear-gradient(135deg,var(--copper1),var(--copper2));
  transition:.3s;
}

.nav-menu a:hover::after{width:100%;}
@media(max-width:768px){
  .nav-book{
    display:none;
  }
}
.menu-toggle span{
  transition:all .3s ease;
}

.menu-toggle.open span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.open span:nth-child(2){
  opacity:0;
}

.menu-toggle.open span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

/* HAMBURGER */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
}
.horizontal-card{
    display:flex;
    align-items:center;
    gap:60px;
}

.card-image{
    flex:1;
    max-width:50%;
}

.card-content{
    flex:1;
}

@media(max-width:992px){
    .horizontal-card{
        flex-direction:column;
        text-align:center;
    }

    .card-image{
        max-width:100%;
    }

    .card-image{
    width:100%;
    aspect-ratio:3/2;
    overflow:hidden;
    border-radius:20px;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
}
/* MOBILE NAV */

@media(max-width:768px){

  .menu-toggle{display:flex;}

  .nav-menu{
    position:fixed;
    inset:0;
    height:100vh;
    background:rgba(42,33,24,0.97);
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transform:translateY(-100%);
    transition:.4s ease;
  }

  .nav-menu.active{
    transform:translateY(0);
  }

  body.menu-open{overflow:hidden;}
}
.luxury-break{
  height:400px;
  background:url('/assets/images/luxury.jpg') center/cover no-repeat;
}
/* ================= HERO ================= */

.hero-video{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(20,15,10,0.65) 0%,
        rgba(42,33,24,0.80) 60%,
        rgba(42,33,24,0.90) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:0 20px;
}

.hero-content h1{
    font-weight:600;
    letter-spacing:0.5px;
    line-height:1.15;
    text-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.hero-content p{
    margin-top:18px;
    max-width:750px;
    margin-left:auto;
    margin-right:auto;
    color:rgba(255,255,255,0.40);
    font-weight:400;
    text-shadow:0 2px 10px rgba(0,0,0,0.4);
}

.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:15px;
  justify-content:center;
}
@media(max-width:768px){

  .hero-buttons{
    gap:15px;
  }

  .btn-outline{
    border:2px solid rgba(255,255,255,0.6);
  }

}

@media(max-width:768px){
  .hero-content h1{font-size:28px;}
  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }
}
a{
  text-decoration:none;
  color:inherit;
}
.hero-content h1{
    opacity:0;
    transform:translateY(40px);
    animation:heroFadeUp 1.2s ease forwards;
}

.hero-content p{
    opacity:0;
    transform:translateY(30px);
    animation:heroFadeUp 1.2s ease forwards;
    animation-delay:0.3s;
}

.hero-buttons{
    opacity:0;
    transform:translateY(30px);
    animation:heroFadeUp 1.2s ease forwards;
    animation-delay:0.6s;
}

@keyframes heroFadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* TRUST STRIP LUXURY */

.trust-strip{
    background:#f4efe7;
    padding:70px 0;
    border-top:1px solid rgba(0,0,0,0.05);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.trust-grid{
    display:flex;
    gap:30px;
}

.trust-item{
    flex:1;
    background:white;
    padding:30px 26px;
    border-radius:24px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:all .4s ease;
}

.trust-item:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.trust-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(193,122,76,0.08);
}

.trust-icon svg{
    width:22px;
    height:22px;
    stroke:#C17A4C;
}

.trust-text strong{
    display:block;
    font-size:15px;
    color:#2A2118;
    letter-spacing:.3px;
}

.trust-text span{
    font-size:13px;
    color:#777;
}

/* MOBILE */

@media(max-width:768px){

    .trust-grid{
        flex-direction:column;
        gap:20px;
    }

    .trust-item{
        padding:22px;
    }
}
/* ================= BUTTONS ================= */

.btn-primary{
  background:linear-gradient(135deg,var(--copper1),var(--copper2));
  color:#fff;
  padding:12px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}
.btn-outline{
  border:2px solid #fff;
  color:#fff;
  padding:12px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-outline:hover{
  background:#fff;
  color:#2A2118;
}
.btn-primary:hover{transform:translateY(-3px);}
.mobile-book,
.floating-buttons{
    opacity:0;
    visibility:hidden;
    transform:translateY(30px);
    transition:all 0.6s cubic-bezier(.22,.61,.36,1);
}

.mobile-book.visible,
.floating-buttons.visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* ================= TYPOGRAPHY ================= */

h1{font-size:48px;font-weight:600;}
h2{font-size:32px;font-weight:600;margin-bottom:20px;}
h3{font-size:22px;font-weight:600;margin-bottom:10px;}
p{font-size:16px;color:#555;}

@media(max-width:768px){
  h2{font-size:22px;}
  h3{font-size:18px;}
}
.room-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:20px 0;
}

.room-highlights span{
  background:#f1e6db;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
}
.room-badge{
    display:inline-block;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:6px 14px;
    border-radius:30px;
    background:rgba(193,122,76,0.12);
    color:#C17A4C;
    margin-bottom:14px;
    font-weight:600;
}

.room-badge.exclusive{
    background:rgba(78,59,44,0.08);
    color:#4E3B2C;
}
@media(max-width:768px){
    .room-badge{
        font-size:11px;
        padding:5px 12px;
    }
}
/* ================= CARDS ================= */

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:45px;
  padding-bottom:10px;
}
.card-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.card-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.15)
    );
}
.feature-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    transition:.4s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 80px rgba(0,0,0,0.08);
}

.feature-image{
    width:100%;
    aspect-ratio:3/2;
    overflow:hidden;
}

.feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.feature-content{
    padding:50px;
}

.feature-content h2{
    margin-bottom:20px;
}

@media(max-width:768px){
    .feature-content{
        padding:30px;
    }
}
.room-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:15px 0 20px;
    font-size:13px;
    font-weight:500;
    color:#444;
}

.room-meta span{
    background:#f3e8dc;
    padding:6px 12px;
    border-radius:20px;
}

.room-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.room-tags span{
    font-size:12px;
    background:#f8f4eb;
    padding:6px 14px;
    border-radius:20px;
    border:1px solid #eee;
}
.feature-image{
    aspect-ratio:3/2;
    overflow:hidden;
}

.feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.premium-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 55px rgba(0,0,0,0.06);
    transition:all .4s ease;
    display:flex;
    flex-direction:column;

    /* subtle depth */
    border:1px solid rgba(0,0,0,0.04);
}
@media(max-width:768px){
    .premium-card{
        border-radius:24px;
        box-shadow:0 22px 60px rgba(0,0,0,0.08);
    }
}

.premium-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.premium-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.premium-card:hover img{
    transform:scale(1.05);
}

.card-body{
    padding:35px;
}

.card-body h3{
    font-size:20px;
    margin-bottom:12px;
    letter-spacing:.3px;
}

.card-body p{
    font-size:15px;
    line-height:1.7;
    color:#666;
}

@media(max-width:768px){
  .card-grid{
    display:flex;
    overflow-x:auto;
    gap:25px;
    scroll-snap-type:x mandatory;
  }
  .premium-card{
    min-width:85%;
    scroll-snap-align:start;
  }
}
.wedding-feature{
    position:relative;
    padding:160px 0;
    background:url('/assets/images/events/wedding2.webp') center/cover no-repeat;
    color:white;
    text-align:center;
    overflow:hidden;
}

.wedding-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(20,15,10,0.7),
        rgba(42,33,24,0.85)
    );
}

.wedding-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.wedding-content h2{
    font-size:38px;
    margin-bottom:20px;
    text-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.wedding-content p{
    margin-bottom:30px;
    color:rgba(255,255,255,0.40);
    font-weight:400;
    text-shadow:0 2px 12px rgba(0,0,0,0.45);
}
.wedding-content{
  text-align:center;
  margin:0 auto;
}
.wedding-points{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.wedding-points span{
    background:rgba(255,255,255,0.15);
    padding:8px 18px;
    border-radius:25px;
    font-size:13px;
    backdrop-filter:blur(10px);
}

@media(max-width:768px){
    .wedding-feature{
        padding:140px 0;
    }

    .wedding-content h2{
        font-size:26px;
    }
}
/* ================= AMENITIES ================= */

.amenities-grid-new{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    margin-top:60px;
}

.amenity-box{
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.3);
    padding:45px 25px;
    border-radius:26px;
    text-align:center;
    transition:all .4s cubic-bezier(.22,.61,.36,1);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.amenity-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(193,122,76,0.15);
    border:1px solid rgba(193,122,76,0.4);
}
.amenity-box{
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.amenity-icon{
    margin-bottom:18px;
}

.amenity-icon svg{
    width:36px;
    height:36px;
    stroke:#C17A4C;
    transition:.4s ease;
}

.amenity-box:hover .amenity-icon svg{
    transform:scale(1.1);
}

/* ================= TESTIMONIAL ================= */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.testimonial-card{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,0.05);
    transition:.3s ease;
    text-align:center;
}
.testimonial-card{
  max-width:360px;
  margin:auto;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.testimonial-card p{
    font-style:italic;
    margin-bottom:20px;
    color:#555;
    line-height:1.7;
}

.testimonial-card h4{
    font-weight:600;
    font-size:14px;
    color:#4E3B2C;
}

@media(max-width:992px){
    .testimonial-grid{
        grid-template-columns:1fr;
    }
}

/* ================= CTA ================= */

.luxury-cta{
  background:linear-gradient(135deg,#4E3B2C,#2A2118);
  color:#fff;
  text-align:center;
  padding:150px 0;
}

.luxury-cta p{
  max-width:700px;
  margin:0 auto 30px;
  color:#d1c6b8;
}
.faq-accordion{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    border-bottom:1px solid #eee;
    padding:20px 0;
}

.faq-question{
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:16px;
    color:#2A2118;
}

.faq-question span{
    font-size:22px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    color:#555;
    padding-right:20px;
}

.faq-item.active .faq-answer{
    max-height:200px;
    margin-top:15px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}
/* ================= FOOTER ================= */

.main-footer{
    background:#1f1812;
    color:#fff;
    padding:100px 0 40px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-brand h3{
    font-size:22px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#d1c6b8;
    line-height:1.8;
    margin-top:10px;
}

.footer-links h4,
.footer-contact h4{
    margin-bottom:20px;
    font-size:16px;
    letter-spacing:1px;
    margin-top:10px;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links a{
    color:#d1c6b8;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#C17A4C;
}

.footer-contact p{
    color:#d1c6b8;
    margin-bottom:10px;
}

.footer-divider{
    height:1px;
    background:rgba(255,255,255,0.08);
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
    font-size:14px;
    color:#a89f93;
}

@media(max-width:768px){

    .main-footer{
        padding:70px 0 30px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:25px;
        text-align:left;
    }

}
.floating-buttons{
    position:fixed;
    bottom:30px;
    right:18px;
    z-index:1100;
}
@media(max-width:768px){
  .floating-buttons{
    right:15px;
    bottom:80px;
  }
}

.call-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(42,33,24,0.75); /* theme dark glass */
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1.5px solid rgba(193,122,76,0.6);

    box-shadow:0 15px 40px rgba(0,0,0,0.35);

    transition:all .3s ease;
}

.call-btn svg{
    width:22px;
    height:22px;
    stroke:#fff;
    transition:.3s ease;
}

.call-btn:hover{
    transform:translateY(-6px) scale(1.08);
    border-color:#C17A4C;
    box-shadow:0 20px 60px rgba(193,122,76,0.35);
}
.call-btn{
    animation:softPulse 3s ease-in-out infinite;
}

@keyframes softPulse{
    0%,100%{
        box-shadow:0 15px 40px rgba(0,0,0,0.35);
    }
    50%{
        box-shadow:0 20px 55px rgba(193,122,76,0.4);
    }
}


/* ================= MOBILE BOOK BUTTON ================= */

.mobile-cta{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    padding:12px 0;

    color:#C17A4C;
    font-weight:600;
    letter-spacing:1.5px;
    font-size:14px;

    border-radius:50px;

    animation:luxGlow 2.8s ease-in-out infinite;
    text-shadow:0 0 10px rgba(193,122,76,0.4);
}

@keyframes luxGlow{
    0%,100%{
        box-shadow:0 10px 30px rgba(193,122,76,0.4);
    }
    50%{
        box-shadow:0 25px 70px rgba(193,122,76,0.9);
    }
}
.mobile-book{
    opacity:0;
    visibility:hidden;
    transform:translate(-50%,30px);
    left:50%;
    transition:all .6s cubic-bezier(.22,.61,.36,1);
}

.mobile-book.visible{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
}

@media(max-width:768px){

    .mobile-book{
    display:block;
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    width:55%;
    max-width:360px;
    padding:5px;
    border-radius:60px;

    background:rgba(42,33,24,0.45);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        inset 0 0 25px rgba(193,122,76,0.08);

    z-index:999;
}
    body{
        padding-bottom:130px;
    }
  .footer-bottom{
    margin-bottom:60px;
  }
  body{
    background:
    radial-gradient(
        circle at 50% 0%,
        rgba(193,122,76,0.05),
        transparent 40%
    ),
    var(--secondary-beige);
}
  /* ================= FOOTER ACCORDION PREMIUM ================= */

.footer-accordion{
    position:relative;
}

.footer-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    padding:10px 0;
    transition:.3s ease;
}

.footer-heading h4{
    margin:0;
    font-size:16px;
    letter-spacing:.5px;
}

.footer-heading:hover{
    color:#C17A4C;
}

/* Custom Plus Icon */

.footer-icon{
    width:18px;
    height:18px;
    position:relative;
}

.footer-icon span{
    position:absolute;
    background:#C17A4C;
    transition:.4s cubic-bezier(.22,.61,.36,1);
}

.footer-icon span:first-child{
    width:100%;
    height:2px;
    top:8px;
    left:0;
}

.footer-icon span:last-child{
    width:2px;
    height:100%;
    left:8px;
    top:0;
}

/* Dropdown */

.footer-dropdown{
    max-height:0;
    overflow:hidden;
    transition:max-height .5s cubic-bezier(.22,.61,.36,1);
}

.footer-dropdown ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-dropdown li{
    margin-bottom:10px;
}

.footer-dropdown a{
    color:#d1c6b8;
    transition:.3s ease;
}

.footer-dropdown a:hover{
    color:#C17A4C;
    padding-left:6px;
}

/* Active State */

.footer-accordion.active .footer-dropdown{
    max-height:400px;
    margin-top:15px;
}

.footer-accordion.active .footer-icon span:last-child{
    transform:scaleY(0);
}

/* Desktop: disable accordion */

@media(min-width:769px){

    .footer-dropdown{
        max-height:unset !important;
        overflow:visible;
    }

    .footer-icon{
        display:none;
    }

    .footer-heading{
        cursor:default;
    }
}
/* ===== Animated Divider Under Footer Headings ===== */

.footer-heading{
    position:relative;
    padding-bottom:8px;
}

.footer-heading::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:linear-gradient(135deg,#C17A4C,#B3663A);
    transition:width .5s cubic-bezier(.22,.61,.36,1);
}

/* Hover effect */
.footer-heading:hover::after{
    width:60%;
}

/* When accordion open */
.footer-accordion.active .footer-heading::after{
    width:100%;
}