*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#3b0019;
    font-family:'Montserrat',sans-serif;
    color:#fff;
    overflow-x:hidden;
}

.bg-overlay{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top, rgba(255,255,255,.05), transparent 40%);
    pointer-events:none;
}

.topbar{
    width:100%;
    padding:30px 60px;
}

.logo img{
    width:220px;
    max-width:100%;
    height:auto;
    display:block;
}

.hero{
    text-align:center;
    padding:10px 20px 50px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:700;
    margin-bottom:50px;
    color:#fff;
}

.mini-slider{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.mini-slider img{
    width:110px;
    height:150px;
    object-fit:cover;
    border-radius:10px;
    transition:.4s;
    opacity:.75;
}

.mini-slider img:hover{
    transform:translateY(-10px) scale(1.04);
    opacity:1;
}

.categories{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.category-card{
    position:relative;
    height:500px;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

.card-bg{
    position:absolute;
    inset:0;
}

.card-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.category-card:hover .card-bg img{
    transform:scale(1.08);
}

.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.15)
    );
}

.card-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px;
}

.card-subtitle{
    letter-spacing:4px;
    font-size:12px;
    margin-bottom:20px;
    color:#f3d9a3;
}

.card-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:90px;
    line-height:.9;
    margin-bottom:20px;
    color:#fff;
}

.price{
    font-size:45px;
    font-weight:700;
    margin-bottom:30px;
    color:#f3d9a3;
}

.enter-btn{
    border:1px solid rgba(255,255,255,.5);
    padding:14px 40px;
    border-radius:50px;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.category-card:hover .enter-btn{
    background:#fff;
    color:#000;
}

.agencies{
    width:100%;
    max-width:1400px;
    margin:80px auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.agency-card{
    background:#fff;
    border-radius:14px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:140px;
    transition:.4s;
}

.agency-card:hover{
    transform:translateY(-8px);
}

.agency-card img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
}

@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }

    .categories{
        grid-template-columns:1fr;
    }

    .card-content h2{
        font-size:70px;
    }

    .agencies{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .topbar{
        padding:25px;
    }

    .logo{
        font-size:42px;
    }

    .hero h1{
        font-size:34px;
    }

    .mini-slider img{
        width:80px;
        height:110px;
    }

    .category-card{
        height:380px;
    }

    .card-content h2{
        font-size:55px;
    }

    .price{
        font-size:32px;
    }

    .agencies{
        grid-template-columns:1fr;
    }

}

.directory-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(20,0,10,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 35px;
  }
  
  .directory-logo img{
    width:180px;
    height:auto;
    display:block;
  }
  
  .directory-nav{
    display:flex;
    gap:25px;
  }
  
  .directory-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
  }
  
  .directory-nav a.active,
  .directory-nav a:hover{
    color:#f3d9a3;
  }
  
  .directory-actions{
    display:flex;
    gap:12px;
  }
  
  .btn-outline,
  .btn-gold{
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    font-size:14px;
  }
  
  .btn-outline{
    border:1px solid #f3d9a3;
    color:#f3d9a3;
  }
  
  .btn-gold{
    background:#f3d9a3;
    color:#1a000b;
  }
  
  .directory-hero{
    position:relative;
    min-height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    text-align:center;
  }
  
  .highclass-bg{
    background-image:url('../assets/high-class.jpg');
  }
  
  .lowcost-bg{
    background-image:url('../assets/low-cost.jpg');
  }
  
  .directory-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      rgba(59,0,25,.95)
    );
  }
  
  .directory-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:30px;
  }
  
  .directory-hero-content span{
    color:#f3d9a3;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:13px;
  }
  
  .directory-hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:86px;
    line-height:.9;
    margin:18px 0;
  }
  
  .directory-hero-content p{
    color:#eee;
    font-size:18px;
    line-height:1.6;
  }
  
  .search-panel{
    max-width:1250px;
    margin:-35px auto 25px;
    position:relative;
    z-index:5;
    background:#0d0d12;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    padding:14px;
    display:grid;
    grid-template-columns:1.5fr 1fr .7fr auto;
    gap:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
  }
  
  .search-panel input,
  .search-panel select{
    background:#171720;
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:14px;
    outline:none;
  }
  
  .search-panel button{
    border:0;
    border-radius:10px;
    padding:14px 28px;
    background:#f3d9a3;
    color:#19000b;
    font-weight:700;
    cursor:pointer;
  }
  
  .filters-bar{
    max-width:1250px;
    margin:0 auto 35px;
    padding:0 15px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  
  .filters-bar button{
    background:#14000a;
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    padding:11px 18px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
  }
  
  .filters-bar button:hover{
    background:#f3d9a3;
    color:#19000b;
  }
  
  .directory-grid{
    max-width:1250px;
    margin:0 auto 80px;
    padding:0 15px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  
  .profile-card{
    position:relative;
    background:#14000a;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    transition:.35s;
  }
  
  .profile-card:hover{
    transform:translateY(-8px);
  }
  
  .profile-card img{
    width:100%;
    height:470px;
    object-fit:cover;
    display:block;
  }
  
  .profile-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:45%;
    background:linear-gradient(to top, rgba(0,0,0,.9), transparent);
    pointer-events:none;
  }
  
  .profile-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:22px;
  }
  
  .profile-info h3{
    font-family:'Cormorant Garamond',serif;
    font-size:38px;
    margin-bottom:4px;
  }
  
  .profile-info p{
    color:#ddd;
    font-size:14px;
    margin-bottom:8px;
  }
  
  .profile-info span{
    color:#f3d9a3;
    font-weight:700;
  }
  
  .badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:3;
    background:#f3d9a3;
    color:#19000b;
    padding:8px 14px;
    border-radius:0 10px 10px 0;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
  }
  
  .badge.low{
    background:#fff;
  }
  
  .heart{
    position:absolute;
    top:15px;
    right:15px;
    z-index:3;
    width:42px;
    height:42px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.9);
    color:#8b0034;
    font-size:24px;
    cursor:pointer;
  }
  
  .play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:3;
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(255,255,255,.72);
    color:#22000d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    padding-left:5px;
  }
  
  @media(max-width:992px){
    .directory-header{
      flex-direction:column;
      gap:15px;
    }
  
    .search-panel{
      grid-template-columns:1fr 1fr;
      margin:20px 15px;
    }
  
    .directory-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .directory-hero-content h1{
      font-size:62px;
    }
  }
  
  @media(max-width:600px){
    .directory-logo img{
      width:145px;
    }
  
    .directory-nav{
      gap:14px;
      flex-wrap:wrap;
      justify-content:center;
    }
  
    .directory-actions{
      width:100%;
      justify-content:center;
    }
  
    .search-panel{
      grid-template-columns:1fr;
    }
  
    .directory-grid{
      grid-template-columns:1fr;
    }
  
    .profile-card img{
      height:430px;
    }
  
    .directory-hero{
      min-height:300px;
    }
  
    .directory-hero-content h1{
      font-size:48px;
    }
  }