/* =========================
COMMON
========================= */

body{
  background:#050505;
  color:#fff;
  font-family: 'Poppins', sans-serif;
}

.aston-container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

.aston-small-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:60px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#d4a91f;
  font-size:14px;
  margin-bottom:24px;
}

.aston-section-head{
  text-align:center;
  margin-bottom:70px;
}

.aston-section-head h2{
  font-size:54px;
  font-weight:700;
  margin-bottom:18px;
}

.aston-section-head p{
  max-width:700px;
  margin:auto;
  color:#bdbdbd;
  line-height:1.8;
}

.aston-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  border-radius:60px;
  text-decoration:none;
  font-weight:600;
  transition:.35s ease;
}

.aston-btn-primary{
  background:#d4a91f;
  color:#000;
}

.aston-btn-primary:hover{
  transform:translateY(-4px);
}

.aston-btn-outline{
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.aston-btn-outline:hover{
  background:#d4a91f;
  color:#000;
}



/* =========================
HERO
========================= */

.aston-hero{
  position:relative;
  height:660px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.aston-hero-bg{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.aston-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.aston-hero-content{
  position:relative;
  z-index:5;
  text-align:center;
  width:90%;
  max-width:900px;
}

.aston-hero-content h1{
  font-size:86px;
  line-height:1;
  font-weight:800;
  color: #000;
}

.aston-hero-content h1 span{
  color:#b62a1a;
}

.aston-hero-content p{
  color:#d0d0d0;
  line-height:1.9;
  font-size:18px;
  margin-bottom:40px;
}

.aston-hero-btns{
  display:flex;
  justify-content:center;
  gap:18px;
}



/* =========================
ABOUT
========================= */

.aston-about{
  padding:120px 0;
  padding-bottom:20px;
}

.aston-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.aston-about-left h2{
  font-size:56px;
  line-height:1.2;
  margin-bottom:30px;
}

.aston-about-left p{
  color:#bdbdbd;
  line-height:1.9;
  margin-bottom:25px;
}

.aston-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:35px;
}

.aston-feature-item{
  background:#101010;
  border:1px solid rgba(255,255,255,.06);
  padding:18px 22px;
  border-radius:18px;
}

.aston-about-right img{
  width:100%;
  border-radius:28px;
}


/* =========================
ASTON CAROUSEL
========================= */

.aston-client-carousel{
  position:relative;
  padding:120px 0;
  padding-top: 10px;
  overflow:hidden;
  background:#050505;
}

.aston-carousel-head{
  text-align:center;
  max-width:850px;
  margin:auto auto 80px;
}

.aston-carousel-head h2{
  font-size:72px;
  line-height:1.1;
  margin-bottom:24px;
  font-weight:700;
}

.aston-carousel-head p{
  color:#bdbdbd;
  line-height:1.9;
  font-size:17px;
}

/* SLIDER */

.aston-slider-wrap{
  position:relative;
  width:100%;
  overflow:hidden;
}

.aston-slider-track{
  display:flex;
  gap:28px;
  width:max-content;
  animation:astonScroll 35s linear infinite;
}

.aston-slider-track:hover{
  animation-play-state:paused;
}

/* CARD */

.aston-slide{
  position:relative;
  width:340px;
  height:480px;
  border-radius:34px;
  overflow:hidden;
  flex-shrink:0;
  background:#111;
  transition:.45s ease;
}

.aston-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.aston-slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.15) 55%,
    rgba(0,0,0,.1) 100%
  );
}

.aston-slide-content{
  position:absolute;
  left:30px;
  bottom:30px;
  z-index:5;
}

.aston-slide-content h3{
  font-size:32px;
  line-height:1.1;
  margin-bottom:12px;
  font-weight:700;
}

.aston-slide-content span{
  color:#d4a91f;
  font-size:15px;
  letter-spacing:.5px;
}

.aston-slide:hover{
  transform:translateY(-10px);
}

.aston-slide:hover img{
  transform:scale(1.08);
}

/* AUTO SCROLL */

@keyframes astonScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* RESPONSIVE */

@media(max-width:991px){

  .aston-carousel-head h2{
    font-size:52px;
  }

  .aston-slide{
    width:300px;
    height:430px;
  }

}

@media(max-width:767px){

  .aston-client-carousel{
    padding:90px 0;
  }

  .aston-carousel-head{
    margin-bottom:50px;
  }

  .aston-carousel-head h2{
    font-size:38px;
  }

  .aston-slide{
    width:240px;
    height:340px;
    border-radius:24px;
  }

  .aston-slide-content{
    left:22px;
    bottom:22px;
  }

  .aston-slide-content h3{
    font-size:24px;
  }

}

/* =========================
WHY CHOOSE ASTON
========================= */

.aston-why-section{
  padding:120px 0;
  padding-top: 0px;
  background:#050505;
  position:relative;
  overflow:hidden;
}

/* HEAD */

.aston-why-head{
  text-align:center;
  max-width:850px;
  margin:auto auto 80px;
}

.aston-small-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:60px;
  border:1px solid rgba(255,255,255,.08);
  background:#111;
  color:#d4a91f;
  font-size:14px;
  margin-bottom:26px;
}

.aston-small-tag::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d4a91f;
  box-shadow:0 0 12px #d4a91f;
}

.aston-why-head h2{
  font-size:68px;
  line-height:1.05;
  margin-bottom:24px;
  font-weight:700;
  letter-spacing:-2px;
}

.aston-why-head p{
  color:#bdbdbd;
  line-height:1.9;
  font-size:17px;
  max-width:760px;
  margin:auto;
}

/* GRID */

.aston-why-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}

/* COMMON CARD */

.aston-why-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  transition:.45s ease;
  border:1px solid rgba(255,255,255,.06);
}

.aston-why-card:hover{
  transform:translateY(-8px);
}

/* =========================
LARGE IMAGE CARD
========================= */

.aston-card-large{
  min-height:390px;
  background:#111;
}

.aston-card-large img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

.aston-card-large:hover img{
  transform:scale(1.05);
}

.aston-why-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.2)
  );
}

.aston-why-content{
  position:absolute;
  left:40px;
  bottom:40px;
  z-index:5;
  max-width:470px;
}

.aston-why-content h3{
  font-size:48px;
  line-height:1.05;
  margin-bottom:16px;
  letter-spacing:-1px;
}

.aston-why-content p{
  color:#d0d0d0;
  line-height:1.9;
  font-size:16px;
}

/* =========================
SMALL CARDS
========================= */

.aston-card-small{
  min-height:182px;
  padding:38px;
  background:#141414;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.light-card{
  background:#1a1a1a;
}

.aston-card-small h3{
  font-size:32px;
  line-height:1.15;
  margin-bottom:16px;
  letter-spacing:-1px;
}

.aston-card-small p{
  color:#bdbdbd;
  line-height:1.8;
  font-size:15px;
}

/* =========================
WIDE CARD
========================= */

.aston-card-wide{
  grid-column:1/3;
  min-height:290px;
  overflow:hidden;
}

.green-card{
  background:#556447;
}

.aston-why-wide-content{
  display:grid;
  grid-template-columns:1fr 360px;
  align-items:center;
  height:100%;
}

.aston-why-left{
  padding:60px;
}

.aston-why-left h3{
  font-size:54px;
  line-height:1.02;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.aston-why-left p{
  color:#f3f3f3;
  line-height:1.9;
  max-width:520px;
  font-size:16px;
}

.aston-why-right{
  height:100%;
  position:relative;
  overflow:hidden;
}

.aston-why-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

.aston-card-wide:hover .aston-why-right img{
  transform:scale(1.06);
}

/* =========================
ICON
========================= */

.aston-why-icon{
  width:78px;
  height:78px;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  font-size:30px;
  margin-bottom:28px;
}

.aston-why-icon.dark{
  background:#222;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

  .aston-why-head h2{
    font-size:56px;
  }

  .aston-why-left h3{
    font-size:46px;
  }

}

@media(max-width:991px){

  .aston-why-grid{
    grid-template-columns:1fr;
  }

  .aston-card-wide{
    grid-column:auto;
  }

  .aston-why-wide-content{
    grid-template-columns:1fr;
  }

  .aston-why-right{
    height:320px;
  }

  .aston-why-head h2{
    font-size:48px;
  }

  .aston-why-content h3{
    font-size:38px;
  }

}

@media(max-width:767px){

  .aston-why-section{
    padding:90px 0;
  }

  .aston-why-head{
    margin-bottom:50px;
  }

  .aston-why-head h2{
    font-size:36px;
    letter-spacing:-1px;
  }

  .aston-why-head p{
    font-size:15px;
    line-height:1.8;
  }

  .aston-card-small{
    padding:28px;
    min-height:auto;
  }

  .aston-card-small h3{
    font-size:26px;
  }

  .aston-why-content{
    left:26px;
    right:26px;
    bottom:26px;
  }

  .aston-why-content h3{
    font-size:30px;
  }

  .aston-why-left{
    padding:35px 28px;
  }

  .aston-why-left h3{
    font-size:34px;
  }

  .aston-why-icon{
    width:66px;
    height:66px;
    font-size:24px;
    border-radius:22px;
  }

}

/* =========================
CTA
========================= */

.aston-cta{
  position:relative;
  padding:140px 0;
  background:url('https://wedinwheels.com/wp-content/uploads/2024/01/img-aston.jpg') center/cover;
}

.aston-cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.28);
}

.aston-cta-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:850px;
  margin:auto;
}

.aston-cta-content h2{
  font-size:68px;
  line-height:1.1;
  margin-bottom:24px;
}

.aston-cta-content p{
  color:#d0d0d0;
  line-height:1.9;
  margin-bottom:40px;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .aston-about-grid{
    grid-template-columns:1fr;
  }

  .aston-gallery-grid{
    columns:2;
  }

  .aston-why-grid{
    grid-template-columns:1fr 1fr;
  }

  .aston-hero-content h1{
    font-size:70px;
  }

  .aston-about-left h2,
  .aston-cta-content h2,
  .aston-section-head h2{
    font-size:42px;
  }

}

@media(max-width:767px){

  .aston-gallery-grid{
    columns:1;
  }

  .aston-why-grid{
    grid-template-columns:1fr;
  }

  .aston-features{
    grid-template-columns:1fr;
  }

  .aston-hero{
    height:80vh;
  }

  .aston-hero-content h1{
    font-size:52px;
  }

  .aston-hero-btns{
    flex-direction:column;
  }

}

/* =========================
GALLERY
========================= */

.aston-gallery-section{
  padding:120px 0;
  background:#050505;
}

.aston-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.aston-gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  cursor:pointer;
  background:#111;
}

.aston-gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:1s ease;
  display:block;
}

.aston-gallery-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.5),
    rgba(0,0,0,0)
  );
  opacity:0;
  transition:.4s ease;
  z-index:2;
}

.aston-gallery-item::after{
  content:"View";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:#d4a91f;
  color:#000;
  font-weight:600;
  padding:12px 24px;
  border-radius:60px;
  opacity:0;
  transition:.4s ease;
  z-index:3;
}

.aston-gallery-item:hover img{
  transform:scale(1.08);
}

.aston-gallery-item:hover::before,
.aston-gallery-item:hover::after{
  opacity:1;
}

/* =========================
LIGHTBOX
========================= */

.aston-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.96);
  z-index:99999;
  display:none;
  flex-direction:column;
}

.aston-lightbox.active{
  display:flex;
}

/* TOP BAR */

.aston-lightbox-top{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.aston-lightbox-count{
  font-size:18px;
  font-weight:600;
}

.aston-lightbox-actions{
  display:flex;
  gap:14px;
}

.aston-lightbox-actions button{
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#141414;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  transition:.3s ease;
}

.aston-lightbox-actions button:hover{
  background:#d4a91f;
  color:#000;
}

/* MAIN */

.aston-lightbox-main{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.aston-lightbox-main img{
  max-width:88%;
  max-height:82vh;
  object-fit:contain;
  transition:.4s ease;
}

/* NAV */

.aston-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:42px;
  cursor:pointer;
  transition:.3s ease;
  z-index:5;
}

.aston-nav:hover{
  background:#d4a91f;
  color:#000;
}

.aston-prev{
  left:40px;
}

.aston-next{
  right:40px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .aston-gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:767px){

  .aston-gallery-grid{
    grid-template-columns:1fr;
  }

  .aston-lightbox-top{
    padding:0 16px;
  }

  .aston-lightbox-actions{
    gap:8px;
  }

  .aston-lightbox-actions button{
    width:40px;
    height:40px;
    font-size:16px;
  }

  .aston-nav{
    width:46px;
    height:46px;
    font-size:30px;
  }

  .aston-prev{
    left:10px;
  }

  .aston-next{
    right:10px;
  }

}

.aston-gallery-item::before,
.aston-gallery-item::after{
  pointer-events:none;
}