*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img,
video{
  width:100%;
  display:block;
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:92px;
  padding:0 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:99;
}

.logo{
  font-size:21px;
  font-weight:800;
  letter-spacing:2px;
}

nav{
  display:flex;
  gap:34px;
}

nav a{
  color:#cfcfcf;
  font-size:15px;
  transition:.3s;
}

nav a:hover{
  color:#d4a94d;
}

.header-btn,
.btn-primary{
  background:#d4a94d;
  color:#000;
  padding:16px 28px;
  border-radius:10px;
  font-weight:800;
  display:inline-block;
  transition:.3s;
}

.header-btn:hover,
.btn-primary:hover{
  background:#efc66b;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.18);
  padding:16px 28px;
  border-radius:10px;
  color:#fff;
  font-weight:700;
  display:inline-block;
}

/* HERO */

.hero{
  min-height:100vh;
  padding:120px 80px 60px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(
      to right,
      #050505 0%,
      rgba(5,5,5,.98) 20%,
      rgba(5,5,5,.82) 42%,
      rgba(5,5,5,.35) 67%,
      rgba(5,5,5,.08) 100%
    ),
    url("images/hero-bg.png");
  background-size:cover;
  background-position:center center;
}

#home,
#services,
#portfolio,
#process,
#contact{
  scroll-margin-top:92px;
}

.hero-content{
  max-width:680px;
}

.eyebrow{
  color:#d4a94d;
  font-size:13px;
  font-weight:800;
  letter-spacing:2.4px;
  text-transform:uppercase;
}

.hero h1{
  margin-top:24px;
  font-size:76px;
  line-height:1.03;
  letter-spacing:-4px;
}

.hero p{
  margin-top:28px;
  max-width:580px;
  color:#d8d8d8;
  font-size:18px;
  line-height:1.8;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-top:42px;
  flex-wrap:wrap;
}

.stats{
  display:flex;
  gap:46px;
  margin-top:70px;
  flex-wrap:wrap;
}

.stats strong{
  display:block;
  color:#d4a94d;
  font-size:28px;
}

.stats span{
  color:#aaa;
  font-size:13px;
}

/* GENERAL */

.section{
  padding:110px 80px;
}

.section-head{
  max-width:760px;
  margin-bottom:58px;
}

.section-head.row{
  max-width:none;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}

.section-head h2,
.about-text h2,
.contact-left h2{
  margin-top:14px;
  font-size:48px;
  line-height:1.12;
  letter-spacing:-2px;
}

.section-head p,
.about-text p,
.contact-left p{
  margin-top:18px;
  color:#aaa;
  font-size:17px;
  line-height:1.8;
}

.small-link{
  color:#d4a94d;
  font-weight:800;
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  display:block;
  background:#101010;
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  overflow:hidden;
  transition:.35s;
  color:#fff;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,169,77,.45);
}

.card h3{
  padding:24px 24px 8px;
  font-size:22px;
}

.card p{
  padding:0 24px 26px;
  color:#aaa;
  line-height:1.7;
}

.image-slider,
.video-preview,
.social-preview{
  position:relative;
  height:260px;
  overflow:hidden;
  background:#101010;
}

.image-slider .slide,
.social-preview .social-item{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.02);
  transition:opacity 1.5s ease, transform 4.8s ease;
  z-index:1;
}

.image-slider .slide.active,
.social-preview .social-item.active{
  opacity:1;
  transform:scale(1.08);
  z-index:2;
}

.video-thumb,
.hover-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-thumb{
  opacity:1;
  z-index:2;
  transition:opacity 1s ease;
}

.hover-video{
  opacity:0;
  z-index:1;
  transition:opacity 1s ease, transform 10s ease-out;
}

.video-card:hover .hover-video{
  opacity:1;
  transform:scale(1.04);
}

.video-card:hover .video-thumb{
  opacity:0;
}

/* PORTFOLIO */

.portfolio-section{
  background:#050505;
  border-top:1px solid rgba(255,255,255,.06);
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.portfolio-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:#0f0f0f;
  border:1px solid rgba(212,169,77,.24);
  border-radius:22px;
  overflow:hidden;
  color:#fff;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.portfolio-card:hover{
  transform:translateY(-7px);
  border-color:rgba(212,169,77,.72);
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}

.portfolio-image{
  position:relative;
  height:255px;
  overflow:hidden;
  background:#080808;
}

.portfolio-image::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:45%;
  background:linear-gradient(to top, rgba(0,0,0,.5), transparent);
  pointer-events:none;
  z-index:2;
}

.portfolio-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease, filter .8s ease;
}

.portfolio-card:hover .portfolio-image img{
  transform:scale(1.08);
  filter:brightness(.78);
}

.portfolio-number{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(212,169,77,.55);
  background:rgba(0,0,0,.55);
  color:#d4a94d;
  font-size:16px;
  font-weight:900;
}

.portfolio-info{
  min-height:150px;
  padding:22px 24px 24px;
  background:
    linear-gradient(
      to bottom,
      rgba(18,18,18,.98),
      rgba(8,8,8,1)
    );
  border-top:1px solid rgba(255,255,255,.06);
}

.portfolio-info > span{
  color:#d4a94d;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.portfolio-title-row{
  margin-top:10px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
}

.portfolio-title-row h3{
  font-size:24px;
  line-height:1.12;
  letter-spacing:-.7px;
}

.portfolio-title-row strong{
  flex:0 0 auto;
  color:#d4a94d;
  font-size:14px;
  white-space:nowrap;
  transform:translateX(0);
  transition:transform .3s ease;
}

.portfolio-card:hover .portfolio-title-row strong{
  transform:translateX(4px);
}

.portfolio-info p{
  margin-top:9px;
  color:#aaa;
  line-height:1.55;
  font-size:15px;
}

/* PROCESS */

.process-section{
  background:#090909;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.process-grid > div{
  background:#101010;
  padding:30px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.07);
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.process-grid > div:hover{
  transform:translateY(-8px);
  border-color:rgba(212,169,77,.55);
  box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.process-grid span{
  color:#d4a94d;
  font-size:28px;
  font-weight:900;
}

.process-grid h3{
  margin-top:18px;
  font-size:20px;
  transition:color .3s ease;
}

.process-grid > div:hover h3{
  color:#d4a94d;
}

.process-grid p{
  margin-top:12px;
  color:#aaa;
  line-height:1.6;
}

/* ABOUT */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-img{
  min-height:560px;
  border-radius:28px;
  background-image:url("images/about-image.jpg?v=2");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border:1px solid rgba(255,255,255,.08);
}

.about-text p{
  margin-bottom:38px;
}

/* CONTACT */

.contact-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:start;
  background:#080808;
}

.contact-left{
  max-width:620px;
}

.contact-stats{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
  margin-bottom:10px;
}

.contact-stats span{
  padding:10px 16px;
  border:1px solid rgba(212,169,77,.25);
  background:rgba(212,169,77,.05);
  border-radius:999px;
  color:#d4a94d;
  font-size:13px;
  font-weight:700;
}

.contact-left p{
  margin-top:22px;
  color:#cfcfcf;
}

.contact-features{
  margin-top:34px;
  display:flex;
  flex-direction:column;
  gap:13px;
}

.contact-form{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  background:#101010;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:18px;
  outline:none;
  font-size:15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:#d4a94d;
}

.contact-form select:nth-of-type(2){
  grid-column:1 / -1;
}

.upload-box{
  grid-column:1 / -1;
  position:relative;
  border:2px dashed rgba(212,169,77,.25);
  border-radius:18px;
  background:#0d0d0d;
  transition:.3s;
  overflow:hidden;
}

.upload-box:hover{
  border-color:#d4a94d;
  background:#111;
}

.upload-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
  cursor:pointer;
}

.upload-icon{
  font-size:34px;
  margin-bottom:12px;
}

.upload-content h4{
  color:#fff;
  font-size:18px;
  margin-bottom:10px;
}

.upload-content p{
  max-width:380px;
  color:#9f9f9f;
  line-height:1.6;
  margin-bottom:12px;
}

.upload-content span{
  color:#d4a94d;
  font-size:14px;
  font-weight:700;
}

.upload-box input[type="file"]{
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  position:absolute !important;
  width:0 !important;
  height:0 !important;
  pointer-events:none !important;
}

.contact-form textarea{
  grid-column:1 / -1;
  min-height:180px;
  resize:vertical;
}

.contact-form button{
  grid-column:1 / -1;
  background:#d4a94d;
  color:#000;
  border:none;
  border-radius:14px;
  padding:20px;
  font-weight:900;
  cursor:pointer;
  transition:.3s;
  box-shadow:0 10px 25px rgba(212,169,77,.25);
}

.contact-form button:hover{
  background:#e3b85d;
  transform:translateY(-2px);
}

/* FOOTER */

.footer{
  padding:55px 80px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  background:#030303;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer h3{
  letter-spacing:2px;
  margin-bottom:12px;
}

.footer p{
  color:#888;
  max-width:420px;
  line-height:1.7;
}

.footer-links{
  display:flex;
  gap:30px;
}

.footer-links a{
  color:#aaa;
  transition:.3s;
}

.footer-links a:hover{
  color:#d4a94d;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .hero h1{
    font-size:58px;
  }

  .service-grid,
  .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about,
  .contact-section{
    grid-template-columns:1fr;
  }

  .portfolio-title-row{
    display:block;
  }

  .portfolio-title-row strong{
    display:inline-block;
    margin-top:14px;
  }
}

@media(max-width:800px){
  .header{
    height:78px;
    padding:0 22px;
  }

  nav{
    display:none;
  }

  .header-btn{
    padding:12px 16px;
    font-size:13px;
  }

  .hero{
    padding:120px 24px 80px;
    background-position:70% center;
  }

  .hero h1{
    font-size:44px;
    letter-spacing:-2px;
  }

  .section{
    padding:80px 24px;
  }

  .section-head.row{
    display:block;
  }

  .section-head h2,
  .about-text h2,
  .contact-left h2{
    font-size:36px;
  }

  .service-grid,
  .portfolio-grid,
  .process-grid,
  .contact-form{
    grid-template-columns:1fr;
  }

  .image-slider,
  .video-preview,
  .social-preview,
  .portfolio-image{
    height:300px;
  }

  .about-img{
    min-height:380px;
  }

  .footer{
    padding:45px 24px;
    flex-direction:column;
  }

  .footer-links{
    flex-wrap:wrap;
  }
}.request-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.request-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.request-status-select{
  height:42px;
}

.request-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.delete-request-btn{
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
.request-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.request-status-select{
  height:42px;
  padding:0 14px;
  border-radius:10px;
  background:rgba(212,169,77,.12);
  border:1px solid rgba(212,169,77,.35);
  color:#d4a94d;
  font-size:14px;
  font-weight:800;
  outline:none;
  cursor:pointer;
}

.request-status-select option{
  background:#101010;
  color:#fff;
}

.delete-request-btn{
  width:42px;
  height:42px;
  padding:0;
  border:none;
  background:transparent;
  color:#ff6b6b;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  line-height:1;
  transition:.25s ease;
}

.delete-request-btn:hover{
  transform:scale(1.15);
  color:#ff4d4d;
}
.panel-layout{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:28px;
  align-items:start;
}

.panel-sidebar{
  position:sticky;
  top:120px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.filter-btn{
  width:100%;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:#101010;
  color:#fff;
  text-align:left;
  cursor:pointer;
  transition:.25s ease;
}

.filter-btn span{
  display:block;
  color:#999;
  font-size:13px;
  margin-bottom:10px;
}

.filter-btn strong{
  color:#d4a94d;
  font-size:28px;
}

.filter-btn:hover,
.filter-btn.active{
  border-color:rgba(212,169,77,.55);
  background:rgba(212,169,77,.08);
}

.requests-grid{
  grid-template-columns:1fr;
}

@media(max-width:900px){
  .panel-layout{
    grid-template-columns:1fr;
  }

  .panel-sidebar{
    position:static;
    display:grid;
    grid-template-columns:repeat(2,1fr);
  }
}@media(max-width:900px){
  .request-admin-fields{
    grid-template-columns:1fr;
  }

  .save-request-btn{
    width:100%;
  }
}