/*work.min.css*/
:root {
    --primary-gold: #b28c42;
    --primary-black: #000000;
    --background-light: #f8f8f8;
    --text-gray: #666666;
    --white: #ffffff;
    --transition-speed: 0.4s;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

 .tf-content-left {
        margin-left: 0;
    }
    .tf-content-right {
        margin-right: 0;
    }
    .tf-content-left {
    background: #fff;

    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
}
.tf-content-right {
    margin-right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
}

.akuH5{
padding-bottom: 10px;
    border-bottom: 2px solid #b28c42;
    color: #b28c42;
}
.form-contact input, .form-contact select, .form-contact textarea {
    width: 100%;
    font-family: "Albert Sans", sans-serif;
    border: 1px solid var(--line);
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    border-radius: 3px;
    padding: 10px 18px;
    width: 100%;
    background: var(--white);
    color: var(--text-2);
    font-weight: 400;
}
.faqsqithform .flat-title .sub-title {
   
    text-align: left;
}
/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.filter-buttons {
    margin-bottom: 50px;
}

.filter-btn {
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid #e0e0e0;
    padding: 7px 15px;
    margin: 8px 5px;
   
    cursor: pointer;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(178, 140, 66, 0.3);
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    position: relative;
}

/* Product item container */
.product-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hidden state for filtering */
.product-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

/* ========== PRODUCT CARD ========== */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* ========== PRODUCT IMAGE ========== */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    /*height: 350px;*/
    background-color: #f0f0f0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ========== PRODUCT OVERLAY ========== */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform var(--transition-speed) ease;
}

.product-card:hover .overlay-content {
    transform: translateY(0);
}

/* Product category badge */
.product-category {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Product title */


/* View details button */
.view-details-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

/* ========== MODAL CUSTOMIZATION ========== */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--background-light);
    padding: 25px 30px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.modal-body .btn-primary {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.modal-body .btn-primary:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */




.flat-title .title {
    color: #b28c42;
}