﻿/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    overflow: hidden;
}

.hero .video-background {
    position: absolute;
    top: 127px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, #000, transparent 50%);
    z-index: 2;
}

.hero:before {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero h2 .accent {
    color: var(--brand-gold);
}

.hero p {
    color: var(--brand-light-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero {
        text-align: center;
        align-items: center;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero .align-items-end {
        align-items: center !important;
        margin-top: 80px;
    }
}

@media (max-width: 575px) {
    .hero .video-background {
        top: 101px;
    }
}

/*--------------------------------------------------------------
# Curated Collections Section
--------------------------------------------------------------*/
.curated-collections {
    background-color: var(--brand-light-blue);
}

@media (min-width: 1600px) {
    .curated-collections .container-fluid {
        max-width: 1600px;
        margin: 0 auto;
        /*padding-left: 60px !important;
    padding-right: 60px !important;*/
    }
}


.curated-collections .section-title {
    margin-bottom: 0;
}

.curated-collections .section-title .h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    color: var(--heading-color);
    margin: 15px 0;
    text-transform: uppercase;
}

.curated-collections .transformation-wrapper {
    position: relative;
    border: 1px solid var(--brand-gold);
    padding: 22px;
    background: #FFF;
    box-shadow: 0 15px 45px rgba(209, 156, 64, 0.1);
    width: 90%;
    left: 35px;
}

@media (max-width: 991px) {
    .curated-collections .transformation-wrapper {
        width: 100%;
        left: 0;
        margin: 0 auto 30px auto;
        padding: 20px;
    }

    /* Adjust BeerSlider labels on mobile */
    .curated-collections .beer-reveal[data-beer-label]:after,
    .curated-collections .beer-slider[data-beer-label]:after {
        top: 15px;
        padding: 4px 10px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .curated-collections .beer-reveal[data-beer-label]:after {
        left: 15px;
    }

    .curated-collections .beer-slider[data-beer-label]:after {
        right: 15px;
    }
}

@media (min-width: 1600px) {
    .curated-collections .transformation-wrapper {
        padding: 25px;
        max-width: 700px;
        margin: 0 auto;
        left: 0;
    }
}

.curated-collections .transformation-wrapper img {
    display: block;
    width: 100%;
}

.curated-collections .transformation-wrapper .center-line {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 50%;
    width: 1px;
    background: rgba(209, 156, 64, 0.4);
    z-index: 2;
}

.curated-collections .transformation-wrapper .label-before,
.curated-collections .transformation-wrapper .label-after {
    position: absolute;
    top: 30px;
    background: #FFFFFF;
    color: var(--brand-gold);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--brand-gold);
    z-index: 3;
}

.curated-collections .transformation-wrapper .label-before {
    left: 30px;
}

.curated-collections .transformation-wrapper .label-after {
    right: 30px;
}

.curated-collections .product-details .category-tag {
    color: var(--brand-gold);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.curated-collections .product-details h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}


@media (max-width: 575px) {
    .curated-collections .product-details h3 {
        font-size: 28px;
    }
}

@media (min-width: 1600px) {
    .curated-collections .product-details h3 {
        font-size: 52px;
    }

    .curated-collections .product-details p {
        font-size: 18px;
    }
}

.curated-collections .product-details p {
    color: var(--paragraph-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.curated-collections .product-process {
    border-top: 1px solid rgba(209, 156, 64, 0.1);
    padding-top: 30px;
}

.process-box-mini {
    background: #fff;
    border: 1px solid rgba(209, 156, 64, 0.1);
    padding: 15px 10px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-box-mini i {
    font-size: 20px;
    color: var(--brand-gold);
    margin-bottom: 8px;
}

.process-box-mini span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-box-mini:hover {
    border-color: var(--brand-gold);
    background: rgba(209, 156, 64, 0.02);
    transform: translateY(-3px);
}

@media (min-width: 1600px) {
    .process-box-mini {
        padding: 20px 15px;
    }

    .process-box-mini i {
        font-size: 24px;
    }

    .process-box-mini span {
        font-size: 12px;
    }
}

.btn-brand a {
    color: #fff !important;
}

/*--------------------------------------------------------------
# Clients & Partners
--------------------------------------------------------------*/

.clients-2 .swiper {
    padding: 10px 0;
}

.clients-2 .swiper-wrapper {
    height: auto;
}

.clients-2 .swiper-slide img {
    transition: 0.3s;
}

.clients-2 .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .call-to-action {
        min-height: 400px;
    }
}

.call-to-action .video-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.call-to-action .video-background:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action .cta-content h3 {
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    font-size: 42px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .call-to-action .cta-content h3 {
        font-size: 32px;
    }

    .call-to-action .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .call-to-action .cta-content h3 {
        font-size: 28px;
    }
}

.call-to-action .cta-content p {
    color: var(--brand-light-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 35px;
}



/*--------------------------------------------------------------
# Portfolio / Gallery (Unified Slider)
--------------------------------------------------------------*/
.portfolio {
    background-color: var(--brand-light-blue);
    /* The Boutique Card Design */
}

@media (min-width: 1600px) {
    .portfolio .container {
        max-width: 1600px;
    }
}

.portfolio .section-title {
    margin-bottom: 0;
}

.portfolio .section-title h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    color: var(--heading-color);
    margin: 15px 0;
    text-transform: uppercase;
}

.portfolio .section-title .divider {
    width: 50px;
    height: 2px;
    background: var(--brand-gold);
    margin: 20px auto;
}



.portfolio .portfolio-card {
    background: var(--brand-light-blue);
    padding: 15px;
    border: 1px solid rgba(209, 156, 64, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio .portfolio-card .card-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-card .card-img img {
    transition: 0.6s ease-in-out;
}

.portfolio .portfolio-card .card-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(209, 156, 64, 0.1);
}

.portfolio .portfolio-card .card-actions a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid rgba(209, 156, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--brand-blue);
    text-decoration: none;
}

.portfolio .portfolio-card .card-actions a i {
    font-size: 18px;
    transition: 0.3s;
}

.portfolio .portfolio-card .card-actions a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(209, 156, 64, 0.2);
}

.portfolio .portfolio-card .card-actions a:hover i {
    color: #fff;
}

.portfolio .portfolio-card .card-img .card-overlay .overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.portfolio .portfolio-card .card-info {
    padding: 25px 0 10px 0;
    text-align: center;
}

.portfolio .portfolio-card .card-info h4 {
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.portfolio .portfolio-card .card-info p {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-gold);
}

/* Portfolio Universal Slider Styling */
.portfolio .swiper-slide {
    transition: transform 0.3s ease;
    padding: 10px;
}

.portfolio .swiper-slide-active {
    transform: scale(1.02);
}

.portfolio .swiper-button-prev,
.portfolio .swiper-button-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.portfolio .swiper-button-prev:after,
.portfolio .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.portfolio .swiper-button-prev:hover,
.portfolio .swiper-button-next:hover {
    color: var(--brand-gold);
    box-shadow: 0 4px 15px rgba(209, 156, 64, 0.2);
}

.portfolio .swiper-button-prev {
    left: 15px;
}

.portfolio .swiper-button-next {
    right: 15px;
}

/* Hide arrows on mobile if they overlap too much, or keep them with small adjustments */
@media (max-width: 767px) {
    .portfolio .swiper-button-prev {
        left: 15px;
    }

    .portfolio .swiper-button-next {
        right: 15px;
    }
}

.portfolio .swiper-pagination-bullet-active {
    background-color: var(--brand-gold);
}

.portfolio .portfolio-card:hover {
    background: #FFFFFF;
    border-color: var(--brand-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(209, 156, 64, 0.1);
}

.portfolio .portfolio-card:hover .card-img img {
    transform: scale(1.1);
}

.portfolio .portfolio-card:hover .card-overlay {
    opacity: 1;
}



/*--------------------------------------------------------------
# Primary Services (Sticky Scroll)
--------------------------------------------------------------*/
/* Sticky Scroll Services Section (Natural Scroll) */
.services.section {
    overflow: visible;
    /* Allow sticky to work */
    background: #fff;
}

.sticky-services-row {
    position: relative;
}

/* Scroll Wrapper on Left */
.service-scroll-wrapper {
    padding-right: 40px;
}

.service-scroll-item {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px;
    opacity: 0.3;
    transition: all 0.6s ease;
    transform: translateY(20px);
}

.service-scroll-item.active {
    opacity: 1;
    transform: translateY(0);
}

.service-scroll-item .service-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 30px;
}

.service-scroll-item .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-scroll-item h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.service-scroll-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--paragraph-color);
    margin-bottom: 40px;
}

.service-scroll-item .service-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-scroll-item .service-link i {
    transition: transform 0.3s ease;
}

.service-scroll-item .service-link:hover i {
    transform: translateX(10px);
}

/* Sticky Pane on Right */
.service-sticky-pane {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sticky-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.sticky-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 0;
}

@media (min-width: 1600px) {
    .sticky-image-container img {
        object-fit: none;
        height: auto;
    }
}

@media (min-width: 992px) {
    .ps-lg-5 {
        padding-left: 0 !important;
    }
}

.sticky-image-container img.active {
    opacity: 1;
    z-index: 1;
}

/* Centered Vertical Pagination (Capsule Style) */
.service-nav-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(240, 240, 240, 0.9);
    padding: 15px 8px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-nav-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(13, 122, 179, 0.4);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-nav-dots .dot.active {
    opacity: 1;
    height: 30px;
    width: 6px;
    border-radius: 10px;
    background: var(--accent-color);
}

.mobile-service-image {
    display: none;
}

@media (max-width: 991px) {
    .service-sticky-pane {
        display: none;
        /* Mobile simplified layout */
    }

    .service-scroll-item {
        min-height: auto;
        padding: 60px 20px;
        opacity: 1;
        transform: none;
        background: #fff;
    }

    .service-scroll-item .service-icon {
        display: none;
    }

    .mobile-service-image {
        display: block;
        margin-top: 30px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .mobile-service-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .service-scroll-wrapper {
        padding-right: 0;
    }

    .service-scroll-item h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {

    .services.section {
        padding-bottom: 0;
    }

    .service-scroll-item {
        padding: 15px 12px 5px;
    }

    .service-scroll-item h3 {
        font-size: 22px;
    }

    .service-scroll-item p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px !important;
    }

    .facebook-link p {
        font-size: 20px !important;
    }

    .facebook-link a {
        font-size: 18px !important;
    }
}

/*--------------------------------------------------------------
# Google Reviews Section
--------------------------------------------------------------*/
.google-reviews {
    background-color: #ffffff;
    /* Light grey background */
}

.google-reviews .reviews-header {
    border-bottom: 2px solid #e8eaed;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.google-reviews .google-logo span {
    font-size: 26px;
    color: #3c4043;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.5px;
}



.google-reviews .review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f1f3f4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.google-reviews .review-card:hover {
    transform: translateY(-5px);
}

.google-reviews .google-icon-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.8;
}

.google-reviews .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.google-reviews .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-reviews .circle-blue {
    background-color: #5c6bc0;
}

.google-reviews .circle-red {
    background-color: #e53935;
}

.google-reviews .circle-orange {
    background-color: #bf360c;
}

.google-reviews .reviewer-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #202124;
}

.google-reviews .review-date {
    font-size: 13px;
    color: #70757a;
}

.google-reviews .stars {
    height: 24px;
    display: flex;
    align-items: center;
}

.google-reviews .stars i {
    color: #fbbc04;
    /* Google Star Yellow */
    font-size: 19px;
    margin-right: 3px;
}

.google-reviews .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4d5156;
    flex-grow: 1;
    margin-top: 10px;
}

.google-reviews .review-text.scrollable {
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar */
.google-reviews .review-text.scrollable::-webkit-scrollbar {
    width: 5px;
}

.google-reviews .review-text.scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.google-reviews .review-text.scrollable::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

.google-reviews .review-text.scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--brand-light-blue);
}

/* Swiper Controls Navigation */
.google-reviews .swiper {
    padding: 10px 0 60px 0;
    position: relative;
}

.google-reviews .swiper-button-prev,
.google-reviews .swiper-button-next {
    color: #bdc1c6;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.google-reviews .swiper-button-prev:hover,
.google-reviews .swiper-button-next:hover {
    color: var(--brand-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.google-reviews .swiper-button-prev:after,
.google-reviews .swiper-button-next:after {
    font-size: 16px;
    font-weight: 800;
}

.google-reviews .swiper-pagination {
    bottom: 10px;
}

.google-reviews .swiper-pagination-bullet {
    background: #dadce0;
    opacity: 1;
}

.google-reviews .swiper-pagination-bullet-active {
    background: var(--brand-gold);
}

/*--------------------------------------------------------------
# Vendor Customizations (BeerSlider)
--------------------------------------------------------------*/
.beer-slider {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Optional: extra shadow */
}

.beer-reveal[data-beer-label]:after,
.beer-slider[data-beer-label]:after {
    background: #FFFFFF;
    color: var(--brand-gold);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--brand-gold);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    top: 20px;
    /* Adjust top spacing */
}

/* Specific positioning adjustments if needed */
.beer-reveal[data-beer-label]:after {
    left: 20px;
}

.beer-slider[data-beer-label]:after {
    right: 20px;
}

/* Handle color */
.beer-handle {
    background: var(--brand-gold);
    color: #fff;
}

.beer-range:focus~.beer-handle {
    background: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(209, 156, 64, 0.3);
}