.image-slider .swiper-wrapper {
	height: 600px
}

.why-choose-item .why-choose-number {
    transform: translate(-50%, -50%);
    width: clamp(60px, 3.646vw, 70px);
    height: clamp(60px, 3.646vw, 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.cta-section .cta-button-secondary:hover{
    transform: translateY(-3px);
}

.cta-section .cta-button-outline:hover{
    transform: translateY(-3px);
}

.brands-grid .brand-item:hover {
	transform: translateY(-8px);
}

/* Blogs Content Section */
.blogs-content-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blogs-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.blogs-section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 40px;
    color: #363636;
    margin-bottom: 16px;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.blogs-section-description {
    font-family: 'Verdana', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #666666;
    margin-top: 1rem;
}

/* Blog Accordion */
.blogs-accordion {
    margin-top: 32px;
}

.blog-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-accordion-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-accordion-item.active {
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.blog-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.blog-accordion-header:hover {
    background-color: #f8f8f8;
}

.blog-accordion-header:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.blog-accordion-item.active .blog-accordion-header {
    background-color: #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-accordion-year {
    font-weight: 500;
    font-size: 24px;
    color: #363636;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-accordion-count {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-left: 16px;
}

.blog-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.blog-accordion-icon svg {
    width: 100%;
    height: 100%;
}

.blog-accordion-item.active .blog-accordion-icon {
    transform: rotate(180deg);
}

.blog-accordion-content {
    display: none;
    padding: 0 32px;
    background-color: #ffffff;
}

.blog-accordion-item.active .blog-accordion-content {
    display: block;
    padding: 32px;
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.blog-card-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(212, 175, 55, 0.95);
    color: #1a1a1a;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.blog-date-day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.blog-date-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #363636;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #d4af37;
}

.blog-card-excerpt {
    font-family: 'Verdana', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.blog-card-author,
.blog-card-read-time {
    font-size: 14px;
}

.blog-card-link {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: inline-block;
}

.blog-card-link:hover {
    color: #c9a961;
}

.blog-load-more-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load-more-posts {
    background-color: #D4AF37;
    color: #363636;
    border: none;
    font-size: 18px;
    font-weight: 500;
}

.load-more-posts:hover, .load-more-posts:focus{
    background-color: #BF9B30;
    color: #363636;
}

/*Testimonial Page*/
.testimonial-quote-icon {
    opacity: 0.3;
}

.testimonials-cta-button:hover {
    transform: translateY(-2px);
}

/*Specials Page*/
.special-card:hover {
    transform: translateY(-5px);;
}

.special-image-wrapper .special-image{
    height: 250px;
}

.special-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/*.special-image-wrapper .special-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: transform 0.3s ease;
}*/

.special-card:hover .special-image {
    transform: scale(1.1);
}

/*Our Story Page*/
.about-story-image{
    height: 400px;
}

/*sign UP Page*/
.subscribe-form .elementor-field::placeholder {
    color: #999999;
    font-style: italic;
    font-size: 16px;
}

/*Blog detail Page*/
.blog-featured-img{
    max-height: 500px;
}

.blog-detail-body, .page-template-default {
    font-family: 'Verdana', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.blog-detail-body h1, .page-template-default h1 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #333333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.page-template-default h1{
    margin-top: 25px;
}

.blog-detail-body h2, .page-template-default h2 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #333333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.blog-detail-body h3, .page-template-default h3 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.blog-detail-body h4, .page-template-default h4 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.blog-detail-body h5, .page-template-default h5 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.blog-detail-body h6, .page-template-default h6 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.blog-detail-body p, .page-template-default p {
    margin-bottom: 24px;
}



.blog-detail-body ul, .blog-detail-body ol, .page-template-default ul, .page-template-default ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-detail-body img, .page-template-default img{
    width: auto;
    border-radius: 12px;
    overflow: hidden;
}

.tls-qr-code-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.tls-qr-expiry-note{
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}
.tls-qr-expiry-note p{
    margin: 0;
}

.tls-qr-access-wrapper{
    margin: 15px;
}

.tls-qr-access-denied{
    max-width:600px;
    margin:32px auto;
    padding: clamp(16px, 1.667vw, 32px);
    text-align:center;
    border:1px solid #ccc;
    background:#f9f9f9;
    font-size: 16px;
}

.tls-qr-access-denied p{
    margin: 0;
}

.tls-qr-expired-message{
    display:none;
    margin-top:16px;
    color:#D4AF37;
    font-weight:600;
}

@media(max-width: 1024px){
    .main-header-menu {
        width: min-content;
    }
}

@media (max-width: 768px) {

    .blogs-content-section {
        padding: 32px 16px;
    }

    .blogs-section-title {
        font-size: 32px;
    }

    .blog-accordion-header {
        padding: 16px;
        flex-wrap: wrap;
    }

    .blog-accordion-year {
        font-size: 20px;
    }

    .blog-accordion-count {
        font-size: 14px;
        margin-left: 8px;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-accordion-item.active .blog-accordion-content {
        padding: 24px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /*Our Story Page*/
    .about-story-image{
        height: 350px;
    }

    .blog-detail-body h1, .page-template-default h1 {
        font-size: 32px;
    }

    .blog-detail-body h2, .page-template-default h2 {
        font-size: 28px;
    }

    .blog-detail-body h3, .page-template-default h3 {
        font-size: 22px;
    }

    .blog-detail-body h4, .page-template-default h4 {
        font-size: 20px;
    }

    .blog-detail-body h5, .page-template-default h5 {
        font-size: 18px;
    }

    .blog-detail-body h6, .page-template-default h6 {
        font-size: 16px;
    }

}

@media (max-width: 480px) {
    /*Our Story Page*/
    .about-story-image{
        height: 300px;
    }

}