/* ============================= */
/*        Global Styles          */
/* ============================= */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding-top: 100px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


/* ============================= */
/*          Slideshow            */
/* ============================= */

.slideshow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px minmax(0, 1fr);
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.slide.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================= */
/*     Slideshow Responsiveness  */
/* ============================= */

@media (max-width: 1200px) {
    .slideshow {
        grid-template-columns: minmax(0, 0.5fr) 600px minmax(0, 0.5fr);
    }
}

@media (max-width: 900px) {
    .slideshow {
        grid-template-columns: 0 600px 0;
    }

    .slide.photo {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 1000px) {
    .slideshow {
        grid-template-columns: 1fr;
        height: 80vh;
    }

    .slide.photo {
        display: none;
    }

    .slide.video {
        display: block;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .slideshow {
        grid-template-columns: 1fr;
        height: 80vh;
    }

    .slide.video {
        width: 100%;
    }

    .slide.photo {
        display: none;
    }
}


/* ============================= */
/*        Video Overlay          */
/* ============================= */

.slide.video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* ============================= */
/*      Video Text Content       */
/* ============================= */

.video-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    letter-spacing: 5px;
    gap: 5rem;
}

.video-text h1 {
    font-size: 2rem;
    margin: 5px;
}

.video-text p {
    font-size: 1.1rem;
    margin: 0;
}


/* ============================= */
/*         Video Divider         */
/* ============================= */

.video-divider {
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
    margin-top: 1rem;
    z-index: 3;
}


/* ============================= */
/*    Mobile Video Adjustments   */
/* ============================= */

@media (max-width: 600px) {
    .video-content {
        justify-content: flex-start;
        padding-bottom: 3rem;
    }

    .video-button {
        margin-top: 2rem;
    }

    .video-divider {
        margin-top: 0.75rem;
    }

    .video-text h1 {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    .video-text p {
        font-size: 1rem;
        letter-spacing: 3px;
    }
}


/* ============================= */
/*    Content after slideshow    */
/* ============================= */

.hero {
  padding: 60px 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.hero-text h1::after {
  content: "";
  display: block;
  width: 220px;
  height: 4px;
  background-color: #4346f7;
  margin-top: 8px;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #444;
}

.btn {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  padding: 12px 26px;
  background-color: #0b3c6d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #082f55;
}

.hero-images {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 140px 50px 140px;
    gap: 14px;
}

.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-images .img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.hero-images .img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.hero-images .img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
}

.hero-images .img-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

@media (max-width: 1050px) {
    .hero-content{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-text{
        width: 60%;
        text-align: center;
    }

    .hero-text h1::after {
        margin: 8px auto 0 auto;
    }

    .btn{
        margin-bottom: 0px;
    }

    .hero-images{
        margin-top: 0px;
    }

}

@media (max-width: 900px) {
    .hero {
       padding: 35px 60px;
    }

    .hero-content{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-text{
        width: 80%;
        text-align: center;
    }

    .hero-text h1::after {
        margin: 8px auto 0 auto;
    }

    .btn{
        margin-bottom: 0px;
    }

    .hero-images{
        margin-top: 0px;
    }

}

@media (max-width: 500px) {
    .hero {
       padding: 30px 40px;
    }

    .hero-content{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-text{
        width: 100%;
        text-align: center;
    }

    .hero-text h1::after {
        margin: 8px auto 0 auto;
    }

    .btn{
        margin-bottom: 0px;
    }

    .hero-images{
        margin-top: 0px;
    }

}

/* ============================= */
/*          Step-by-step         */
/* ============================= */

.step-by-step {
    width: 100%;
    margin: 40px auto;
    background: #eee;
    padding: 40px 60px;
    margin-bottom: 0;
}


h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}


.step {
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto 35px auto;
}


.number {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0b4f78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
}


.content h2 {
    margin: 0 0 8px 0;
    font-size: 22px;
}


.content p {
    margin: 0;
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

.wide-photo img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .step-by-step {
        padding: 30px 20px;
    }

    .step {
        flex-direction: row;
    }

    h1 {
        font-size: 26px;
    }

    .wide-photo img {
        transform: scale(1.3);
        transform-origin: center;
    }
}


/* ============================= */
/*            Packs              */
/* ============================= */

.packs {
    text-align: center;
    background: #eee;
    padding: 60px 20px;
}

.packs h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.packs h2 {
    color: #454545;
    font-size: 20px;
    margin-bottom: 0.4rem;
}

.packs p {
    font-size: 0.8rem;
    color: #454545;
    margin: 0px auto 40px;
}

.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h2 {
    margin-bottom: 5px;
}

.from {
    font-size: 14px;
    color: #777;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #0b5ed7;
    margin: 10px 0 20px;
}

.card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.card ul li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b5ed7;
    font-weight: bold;
}

.card button {
    font-family: 'Montserrat', sans-serif;
    margin-top: auto;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #eaeaea;
    cursor: pointer;
    transition: background 0.3s;
}

.card button:hover {
    background: #d6d6d6;
}

.card:hover {
    border: 2px solid #0b5ed7;
}

.badge {
    background: #4346f7;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-note {
    font-size: 12px !important;
    color: #ce0000 !important;
    font-weight: 600;
    margin-bottom: 15px !important;
}

.card.featured {
    border: 2px solid #4346f7;
    transform: scale(1.05);
}

.products {
    text-align: center;
    max-width: 470px;
    margin: 0 auto;
}

.products::after {
    content: "";
    display: block;
    width: 300px;
    height: 3px;
    background-color: #4346f7;
    margin: 30px auto 0 auto;
}

.quote-title {
    margin-top: 30px;
}

.quote-title h2{
    font-size: 30px;
    text-align: center;
}
