/*==================================================
GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cinzel:wght@400;500;600;700&display=swap');

/*==================================================
RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: .35s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    background: none;
}

section {
    padding: 90px 0;
}

/*==================================================
ROOT
==================================================*/

:root {

    --primary: #8B1E24;
    --secondary: #111111;
    --gold: #d6aa55;
    --light: #f8f8f8;
    --white: #ffffff;
    --text: #666;
    --border: #e6e6e6;
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

/*==================================================
COMMON
==================================================*/

.container {
    width: 1320px;
    max-width: 95%;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 42px;
    color: #111;
    margin: 12px 0;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.section-title p {
    width: 700px;
    max-width: 100%;
    margin: auto;
    color: #777;
}

/*==================================================
BUTTON
==================================================*/

.btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 34px;

    background: var(--primary);

    color: #fff;

    border-radius: 50px;

    font-weight: 600;

    transition: .4s;

    box-shadow: 0 12px 30px rgba(139, 30, 36, .25);

}

.btn:hover {

    background: #111;

    transform: translateY(-4px);

}

.btn.outline {

    background: transparent;

    color: #fff;

    border: 2px solid #fff;

}

.btn.outline:hover {

    background: #fff;

    color: #111;

}

/*==================================================
TOP HEADER
==================================================*/

.top-header {

    background: #111;

    color: #fff;

    font-size: 14px;

    padding: 12px 0;

}

.top-header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.top-left span {

    display: flex;

    gap: 10px;

    align-items: center;

}

.top-right {

    display: flex;

    gap: 30px;

}

.top-right a {

    color: #fff;

    display: flex;

    align-items: center;

    gap: 8px;

}

.top-right a:hover {

    color: var(--gold);

}

/*==================================================
NAVBAR
==================================================*/

.navbar {

    background: #fff;

    position: sticky;

    top: 0;

    z-index: 999;

    box-shadow: 0 2px 15px rgba(0, 0, 0, .06);

}

.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 90px;

}

.logo img {

    height: 70px;

}

.menu {

    display: flex;

    align-items: center;

    gap: 38px;

}

.menu>li {

    position: relative;

}

.menu>li>a {

    color: #111;

    font-weight: 600;

    font-size: 16px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 35px 0;

}

.menu>li>a:hover,

.menu>li>a.active {

    color: var(--primary);

}

/*==================================================
DROPDOWN
==================================================*/

.submenu {

    position: absolute;

    left: 0;

    top: 120%;

    width: 240px;

    background: #fff;

    opacity: 0;

    visibility: hidden;

    box-shadow: var(--shadow);

    transition: .35s;

    border-radius: 10px;

    overflow: hidden;

}

.dropdown:hover .submenu {

    opacity: 1;

    visibility: visible;

    top: 100%;

}

.submenu li {

    border-bottom: 1px solid #eee;

}

.submenu li:last-child {

    border: none;

}

.submenu li a {

    display: block;

    padding: 15px 20px;

    color: #222;

    font-weight: 500;

}

.submenu li a:hover {

    background: var(--primary);

    color: #fff;

    padding-left: 28px;

}

/*==================================================
NAV BUTTON
==================================================*/

.nav-btn .btn {

    padding: 14px 28px;

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}

::-webkit-scrollbar-track {

    background: #f2f2f2;

}

/*==================================================
UTILITY
==================================================*/

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

/*==================================================
HERO SECTION
==================================================*/

.hero {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 720px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 720px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 68px;
    line-height: 1.08;
    color: #111;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btns .outline {
    color: #111;
    border: 2px solid #111;
}

.hero-btns .outline:hover {
    background: #111;
    color: #fff;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;

}

.hero-image img {
    max-height: 650px;
    width: auto;
    object-fit: contain;
    animation: heroFloat 5s ease-in-out infinite;
    border-radius: 25px;
}

/*==================================================
BACKGROUND SHAPES
==================================================*/

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -180px;
    top: -180px;
    background: rgba(139, 30, 36, .05);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -150px;
    bottom: -150px;
    background: rgba(214, 170, 85, .08);
    border-radius: 50%;
}

/*==================================================
SLIDER ARROWS
==================================================*/

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    z-index: 5;
    transition: .35s;
    font-size: 18px;
}

.prev:hover,
.next:hover {
    background: var(--primary);
    color: #fff;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}

/*==================================================
DOTS
==================================================*/

.dots {
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
    transition: .35s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.25);
}

/*==================================================
HERO ANIMATIONS
==================================================*/

.slide.active .hero-text h1 {
    animation: fadeLeft .9s ease;
}

.slide.active .hero-text p {
    animation: fadeLeft 1.1s ease;
}

.slide.active .hero-btns {
    animation: fadeLeft 1.3s ease;
}

.slide.active .hero-image {
    animation: fadeRight 1.1s ease;
}

/*==================================================
KEYFRAMES
==================================================*/

@keyframes heroFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/*==================================================
HERO RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .hero-content {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 58px;
    }

    .hero-image img {
        max-height: 560px;
    }

}

@media(max-width:991px) {

    .hero-slider,
    .hero-content {
        height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 90px 0;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text p {
        margin: auto auto 35px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 40px;
    }

    .hero-image img {
        max-height: 500px;
    }

    .prev,
    .next {
        display: none;
    }

}

@media(max-width:768px) {

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image img {
        max-height: 380px;
    }

}

@media(max-width:480px) {

    .hero {
        padding-top: 20px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .dots {
        bottom: 20px;
    }

}

/*==================================================
FEATURES SECTION
==================================================*/

.features {
    background: #fff;
    padding: 90px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: .4s;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
}

.feature-icon i {
    font-size: 34px;
    color: var(--primary);
    transition: .4s;
}

.feature-box:hover .feature-icon i {
    color: #fff;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.feature-box p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
ABOUT SECTION
==================================================*/

.about {
    background: #f8f8f8;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.experience-box {
    position: absolute;
    right: -25px;
    bottom: 40px;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(139, 30, 36, .35);
}

.experience-box h2 {
    font-size: 46px;
    margin-bottom: 5px;
}

.experience-box span {
    font-size: 16px;
}

.sub-title {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #111;
    font-family: 'Cinzel', serif;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
}

.about-list {
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.list-item i {
    color: var(--primary);
    font-size: 18px;
}

.about-counter {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    min-width: 150px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.counter-box h3 {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 8px;
}

.counter-box span {
    color: #666;
    font-size: 15px;
}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.why-card:hover {
    background: var(--primary);
    transform: translateY(-10px);
}

.why-card i {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 25px;
    transition: .4s;
}

.why-card:hover i {
    color: #fff;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
    transition: .4s;
}

.why-card:hover h3 {
    color: #fff;
}

.why-card p {
    color: #666;
    line-height: 1.8;
    transition: .4s;
}

.why-card:hover p {
    color: #fff;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .features .container,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        gap: 50px;
    }

}

@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .experience-box {
        right: 20px;
        bottom: 20px;
    }

}

@media(max-width:768px) {

    .features .container,
    .why-grid,
    .about-list {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-counter {
        flex-direction: column;
    }

    .counter-box {
        width: 100%;
    }

}

@media(max-width:480px) {

    .feature-box,
    .why-card {
        padding: 30px 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

}

/*==================================================
SHOP BY CATEGORY
==================================================*/

.categories {
    padding: 100px 0;
    background: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 420px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.category-card:hover img {
    transform: scale(1.12);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .15),
            transparent);
    z-index: 1;
}

.overlay {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    color: #fff;
}

.overlay span {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.overlay h3 {
    font-size: 34px;
    margin-bottom: 18px;
    font-family: 'Cinzel', serif;
}

.overlay a,
.overlay .category-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.overlay a:hover,
.category-card:hover .category-link {
    color: var(--gold);
}

a.category-card {
    display: block;
    color: inherit;
}

/*==================================================
PROMOTIONAL BANNER
==================================================*/

.offer-banner {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.offer-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.offer-content {
    flex: 1;
}

.offer-content span {
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.offer-content h2 {
    font-size: 52px;
    margin: 18px 0;
    line-height: 1.2;
    font-family: 'Cinzel', serif;
}

.offer-content p {
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 600px;
}

.offer-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-image {
    flex: 1;
    text-align: right;
}

.offer-image img {
    max-width: 520px;
    animation: heroFloat 5s infinite ease-in-out;
}

/*==================================================
CATEGORY FEATURES
==================================================*/

.category-features {
    padding: 90px 0;
    background: #f7f7f7;
}

.category-features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 25px;
    transition: .4s;
}

.feature-item:hover i {
    background: var(--primary);
    color: #fff;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-features .container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .offer-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .offer-content p {
        margin: auto auto 35px;
    }

    .offer-btns {
        justify-content: center;
    }

    .offer-image {
        text-align: center;
    }

}

@media(max-width:768px) {

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-features .container {
        grid-template-columns: 1fr;
    }

    .offer-content h2 {
        font-size: 36px;
    }

    .overlay h3 {
        font-size: 28px;
    }

    .category-card {
        height: 360px;
    }

}

@media(max-width:480px) {

    .offer-content h2 {
        font-size: 30px;
    }

    .offer-btns {
        flex-direction: column;
    }

    .offer-btns .btn {
        width: 100%;
    }

    .overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .overlay h3 {
        font-size: 24px;
    }

}

/*==================================================
FEATURED PRODUCTS
==================================================*/

.products {
    padding: 100px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    position: relative;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/*============================
Product Icons
============================*/

.product-icons {
    position: absolute;
    top: 20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: .4s;
}

.product-card:hover .product-icons {
    right: 20px;
}

.product-icons a {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: .3s;
}

.product-icons a:hover {
    background: var(--primary);
    color: #fff;
}

/*============================
Content
============================*/

.product-content {
    padding: 28px;
}

.product-content span {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-content h3 {
    margin-bottom: 20px;
}

.product-content h3 a {
    color: #111;
    font-size: 24px;
    line-height: 1.4;
    font-family: 'Cinzel', serif;
    transition: .3s;
}

.product-content h3 a:hover {
    color: var(--primary);
}

/*============================
Button
============================*/

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background: #111;
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

.product-btn:hover {
    background: var(--primary);
}

/*============================
View All
============================*/

.view-all {
    text-align: center;
    margin-top: 60px;
}

/*============================
Ribbon
============================*/

.product-card::before {

    content: "New";

    position: absolute;

    left: 20px;

    top: 20px;

    background: var(--primary);

    color: #fff;

    padding: 6px 15px;

    font-size: 12px;

    border-radius: 30px;

    font-weight: 600;

    z-index: 5;

}

/*============================
Overlay
============================*/

.product-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .08);

    opacity: 0;

    transition: .4s;

}

.product-card:hover .product-image::after {

    opacity: 1;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .product-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:991px) {

    .product-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .product-image img {

        height: 300px;

    }

}

@media(max-width:768px) {

    .product-content {

        padding: 22px;

    }

    .product-content h3 a {

        font-size: 20px;

    }

}

@media(max-width:576px) {

    .product-grid {

        grid-template-columns: 1fr;

    }

    .product-image img {

        height: 320px;

    }

    .product-icons {

        right: 20px;

    }

    .product-card {

        max-width: 380px;

        margin: auto;

    }

}

/*==================================================
MANUFACTURING PROCESS
==================================================*/

.process-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.process-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .4s;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: .4s;
}

.process-card:hover .process-icon {
    background: var(--primary);
}

.process-icon i {
    font-size: 36px;
    color: var(--primary);
    transition: .4s;
}

.process-card:hover .process-icon i {
    color: #fff;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.process-card p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
COUNTER SECTION
==================================================*/

.counter-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #8B1E24, #581215);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-section .counter-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    transition: .4s;
}

.counter-section .counter-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .15);
}

.counter-section .counter-box i {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--gold);
}

.counter-section .counter-box h2 {
    font-size: 46px;
    margin-bottom: 10px;
    color: #fff;
}

.counter-section .counter-box p {
    color: #f3f3f3;
    font-size: 16px;
}

/*==================================================
COMPANY VIDEO SECTION
==================================================*/

.company-video {
    padding: 100px 0;
    background: #fff;
}

.company-video .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.video-content span {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-content h2 {
    font-size: 46px;
    margin: 18px 0;
    line-height: 1.3;
    font-family: 'Cinzel', serif;
}

.video-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.video-content ul {
    margin: 35px 0;
}

.video-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 500;
}

.video-content ul li i {
    color: var(--primary);
}

.video-image {
    position: relative;
}

.video-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    background: var(--primary);
    color: #fff;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(139, 30, 36, .45);
    }

    70% {
        box-shadow: 0 0 0 28px rgba(139, 30, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 30, 36, 0);
    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .company-video .container {
        grid-template-columns: 1fr;
    }

    .video-content {
        text-align: center;
    }

    .video-content ul li {
        justify-content: center;
    }

}

@media(max-width:768px) {

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .video-content h2 {
        font-size: 34px;
    }

}

@media(max-width:480px) {

    .process-card {
        padding: 30px 20px;
    }

    .counter-section .counter-box h2 {
        font-size: 34px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

}

/*==================================================
TESTIMONIAL SECTION
==================================================*/

.testimonials {
    padding: 100px 0;
    background: #f8f8f8;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.quote-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 26px;
    color: var(--primary);
}

.testimonial-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.client h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 5px;
}

.client span {
    color: #888;
    font-size: 15px;
}

/*==================================================
BRAND SECTION
==================================================*/

.brands {
    padding: 70px 0;
    background: #fff;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.brand-grid img {
    width: 100%;
    opacity: .55;
    transition: .35s;
    filter: grayscale(100%);
}

.brand-grid img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

/*==================================================
BLOG SECTION
==================================================*/

.blog-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 30px;
}

.blog-content span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.blog-content h3 {
    margin: 18px 0;
}

.blog-content h3 a {
    color: #111;
    font-size: 25px;
    line-height: 1.4;
    transition: .3s;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.read-more:hover {
    gap: 14px;
}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter {
    background: linear-gradient(135deg, #8B1E24, #61161a);
    padding: 90px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-content span {
    color: #f5d18d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.newsletter-content h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

.newsletter-content p {
    color: #ececec;
}

.newsletter form {
    display: flex;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    min-width: 500px;
}

.newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 16px;
}

.newsletter button {
    border-radius: 0;
    padding: 18px 35px;
}

/*==================================================
CONTACT CTA
==================================================*/

.contact-cta {
    padding: 80px 0;
    background: #111;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content span {
    color: var(--gold);
    letter-spacing: 2px;
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

.cta-content p {
    color: #ddd;
    max-width: 650px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .testimonial-slider,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter form {
        min-width: 100%;
        max-width: 650px;
    }

}

@media(max-width:768px) {

    .testimonial-slider,
    .blog-grid,
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .newsletter form {
        flex-direction: column;
        border-radius: 15px;
        background: none;
        gap: 15px;
    }

    .newsletter input {
        border-radius: 12px;
    }

    .newsletter button {
        border-radius: 12px;
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }

}

/*==================================================
FOOTER
==================================================*/

.footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 90px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer p {
    color: #bdbdbd;
    line-height: 1.9;
    margin-bottom: 30px;
}

/*=========================
Social Icons
=========================*/

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1b1b1b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/*=========================
Footer Titles
=========================*/

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: var(--primary);
}

/*=========================
Footer Links
=========================*/

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #bfbfbf;
    transition: .35s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

/*=========================
Contact Info
=========================*/

.contact-info li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #cfcfcf;
}

.contact-info i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 20px;
}

/*=========================
Footer Bottom
=========================*/

.footer-bottom {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.copyright {
    color: #bfbfbf;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #bfbfbf;
}

.footer-links a:hover {
    color: #fff;
}

/*==================================================
SCROLL TOP
==================================================*/

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    transition: .35s;
    z-index: 999;
}

.scroll-top:hover {
    background: #111;
    transform: translateY(-6px);
}

/*==================================================
GLOBAL ANIMATIONS
==================================================*/

.fade-up {
    animation: fadeUp .8s ease both;
}

.fade-left {
    animation: fadeLeft .8s ease both;
}

.fade-right {
    animation: fadeRight .8s ease both;
}

.zoom-in {
    animation: zoomIn .8s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes zoomIn {

    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/*==================================================
COMMON HOVER EFFECTS
==================================================*/

img {
    transition: .45s;
}

.card,
.feature-box,
.product-card,
.blog-card,
.process-card,
.why-card {
    transition: .4s ease;
}

.card:hover,
.feature-box:hover,
.product-card:hover,
.blog-card:hover,
.process-card:hover,
.why-card:hover {
    transform: translateY(-10px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 18px;
    }

}

@media(max-width:576px) {

    .container {
        width: 92%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-btns .btn,
    .offer-btns .btn,
    .about-buttons .btn,
    .cta-right .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .footer {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
    }

}

/*=========================================
ABOUT PAGE HERO
=========================================*/

.about-hero {
    position: relative;
    background: url("../images/photos/9.png") center center/cover no-repeat;
    height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .15));
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-content {
    max-width: 700px;
}

.about-hero span {
    display: inline-block;
    color: #d6aa55;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-hero h1 {
    color: #fff;
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.about-hero p {
    color: #f3f3f3;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    color: #d6aa55;
}

.breadcrumb span {
    margin: 0;
    color: #fff;
}

.breadcrumb strong {
    color: #d6aa55;
}

/*=========================================
ABOUT COMPANY
=========================================*/

.about-company {
    padding: 110px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.main-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.small-image {
    position: absolute;
    right: -30px;
    bottom: 40px;
    width: 250px;
}

.small-image img {
    width: 100%;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.experience {
    position: absolute;
    left: -20px;
    top: 40px;
    width: 170px;
    background: #8B1E24;
    color: #fff;
    padding: 28px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 30, 36, .35);
}

.experience h2 {
    font-size: 48px;
    margin-bottom: 5px;
}

.experience span {
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

/*=========================================
ABOUT CONTENT
=========================================*/

.about-info .sub-title {
    color: #8B1E24;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.about-info h2 {
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
    color: #111;
}

.about-info p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/*=========================================
HIGHLIGHTS
=========================================*/

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
    border: 1px solid #ececec;
    padding: 16px 18px;
    border-radius: 12px;
    transition: .35s;
}

.highlight:hover {
    background: #8B1E24;
    border-color: #8B1E24;
    transform: translateY(-5px);
}

.highlight i {
    color: #8B1E24;
    font-size: 18px;
    transition: .35s;
}

.highlight span {
    color: #222;
    font-weight: 500;
    transition: .35s;
}

.highlight:hover i,
.highlight:hover span {
    color: #fff;
}

/*=========================================
BUTTONS
=========================================*/

.about-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.outline-dark {
    background: transparent;
    border: 2px solid #111;
    color: #111;
}

.outline-dark:hover {
    background: #111;
    color: #fff;
}

/*=========================================
COMPANY FEATURES
=========================================*/

.company-features {
    background: #f8f8f8;
    padding: 90px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.company-features .feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.company-features .feature-box:hover {
    transform: translateY(-10px);
}

.company-features .feature-box i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 22px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    color: #8B1E24;
    font-size: 34px;
    transition: .35s;
}

.company-features .feature-box:hover i {
    background: #8B1E24;
    color: #fff;
}

.company-features .feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.company-features .feature-box p {
    color: #666;
    line-height: 1.8;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .about-grid {
        gap: 50px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .small-image {
        right: 0;
    }

    .experience {
        left: 20px;
    }

}

@media(max-width:768px) {

    .about-hero {
        height: 380px;
    }

    .about-hero h1 {
        font-size: 46px;
    }

    .about-info h2 {
        font-size: 34px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .small-image {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .experience {
        position: relative;
        left: auto;
        top: auto;
        margin: 20px auto;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
    }

}

/*=========================================
MISSION • VISION • VALUES
=========================================*/

.mission-section {
    padding: 110px 0;
    background: #fafafa;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.mission-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 22px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #8B1E24;
    transform: scaleX(0);
    transition: .4s;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.mission-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 30px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.mission-icon i {
    font-size: 36px;
    color: #8B1E24;
    transition: .35s;
}

.mission-card:hover .mission-icon {
    background: #8B1E24;
}

.mission-card:hover .mission-icon i {
    color: #fff;
}

.mission-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #111;
    font-family: 'Cinzel', serif;
}

.mission-card p {
    color: #666;
    line-height: 1.9;
}

/*=========================================
MODERN ABOUT
=========================================*/

.about-modern {
    padding: 120px 0;
    background: #fff;
}

.modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.modern-image {
    position: relative;
}

.modern-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.floating-card i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #8B1E24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-one {
    top: 40px;
    left: -35px;
}

.card-two {
    right: -35px;
    bottom: 50px;
}

.floating-card h4 {
    font-size: 22px;
    color: #111;
    margin-bottom: 4px;
}

.floating-card span {
    color: #666;
    font-size: 14px;
}

/*=========================================
MODERN CONTENT
=========================================*/

.modern-content span {
    color: #8B1E24;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
}

.modern-content h2 {
    font-size: 46px;
    line-height: 1.3;
    margin: 18px 0 25px;
    font-family: 'Cinzel', serif;
}

.modern-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.modern-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modern-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.modern-item i {
    color: #8B1E24;
    font-size: 20px;
    margin-top: 6px;
}

.modern-item h4 {
    font-size: 22px;
    color: #111;
    margin-bottom: 8px;
}

.modern-item p {
    margin: 0;
}

/*=========================================
TIMELINE
=========================================*/

.timeline-section {
    padding: 110px 0;
    background: #f8f8f8;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 70px auto 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #8B1E24;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.year {
    display: inline-block;
    background: #8B1E24;
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 40px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8B1E24;
    border: 5px solid #fff;
    box-shadow: 0 0 0 5px rgba(139, 30, 36, .15);
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .modern-grid {
        grid-template-columns: 1fr;
    }

    .card-one {
        left: 20px;
    }

    .card-two {
        right: 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-item::after {
        left: 21px !important;
    }

}

@media(max-width:768px) {

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .modern-content h2 {
        font-size: 34px;
    }

    .floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }

}

@media(max-width:576px) {

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-content {
        padding: 25px;
    }

    .mission-card {
        padding: 35px 25px;
    }

}

/*=========================================
ABOUT STATISTICS
=========================================*/

.about-counter-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #8B1E24, #5d1014);
    position: relative;
    overflow: hidden;
}

.about-counter-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -280px;
    right: -180px;
}

.about-counter-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    bottom: -220px;
    left: -150px;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    padding: 45px 25px;
    text-align: center;
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .15);
}

.stat-box i {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    color: #fff;
    font-size: 36px;
}

.stat-box h2 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.stat-box span {
    color: #f3f3f3;
    font-size: 17px;
}

/*=========================================
TEAM SECTION
=========================================*/

.team-section {
    padding: 120px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.team-card:hover {
    transform: translateY(-12px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .6s;
}

.team-card:hover img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    transition: .4s;
}

.team-card:hover .team-social {
    bottom: 25px;
}

.team-social a {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #8B1E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.team-social a:hover {
    background: #8B1E24;
    color: #fff;
}

.team-info {
    padding: 28px;
    text-align: center;
}

.team-info h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #111;
    font-family: 'Cinzel', serif;
}

.team-info span {
    color: #777;
    font-size: 15px;
}

/*=========================================
CERTIFICATES
=========================================*/

.certificate-section {
    padding: 110px 0;
    background: #f8f8f8;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.certificate-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .4s;
    text-align: center;
}

.certificate-card:hover {
    transform: translateY(-12px);
}

.certificate-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.certificate-card h3 {
    padding: 25px;
    font-size: 24px;
    color: #111;
    font-family: 'Cinzel', serif;
}

/*=========================================
ABOUT CTA
=========================================*/

.about-cta {
    padding: 100px 0;
    background: #111;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-left {
    max-width: 700px;
}

.cta-left span {
    color: #d6aa55;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.cta-left h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    margin: 18px 0;
    font-family: 'Cinzel', serif;
}

.cta-left p {
    color: #ddd;
    line-height: 1.9;
}

.cta-right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-right .outline {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.cta-right .outline:hover {
    background: #fff;
    color: #111;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        justify-content: center;
    }

}

@media(max-width:768px) {

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-left h2 {
        font-size: 36px;
    }

    .team-image img {
        height: 360px;
    }

}

@media(max-width:576px) {

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-right .btn {
        width: 100%;
    }

    .stat-box h2 {
        font-size: 40px;
    }

}

/* ==================================================
   MOBILE NAVIGATION & SMALL-SCREEN FINISHING RULES
   ================================================== */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--secondary);
    font-size: 20px;
}

@media (max-width: 991px) {
    .top-header .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-left span,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-right { gap: 8px 18px; }

    .navbar .container {
        position: relative;
        height: 76px;
    }

    .logo img { height: 58px; }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .menu-toggle.is-open { color: var(--primary); }
    .menu-toggle.is-open i::before { content: "\f00d"; }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 4%;
        background: #fff;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .1);
    }

    .menu.is-open { display: flex; }
    .menu > li > a { padding: 13px 10px; justify-content: space-between; }
    .nav-btn { display: none; }

    .submenu {
        position: static;
        display: block;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        padding-left: 14px;
    }

    .submenu li a { padding: 10px 14px; }
    .dropdown:hover .submenu { top: auto; }

    .hero-content { padding: 65px 0 85px; }
    .hero-text h1 { font-size: clamp(32px, 8vw, 46px); }
    .hero-image img { max-height: min(58vw, 380px); }
    .dots { bottom: 24px; }

    .about-hero h1,
    .product-hero h1,
    .contact-hero h1 { font-size: clamp(34px, 9vw, 46px); }

    .footer-bottom { margin-top: 42px; }
}

@media (max-width: 576px) {
    body { font-size: 15px; line-height: 1.65; }
    section, .categories, .products, .about-company, .mission-section,
    .about-modern, .timeline-section, .team-section, .certificate-section,
    .about-counter-section, .company-features { padding: 58px 0; }

    .container { width: min(100% - 28px, 1320px); max-width: none; }
    .top-header { padding: 9px 0; font-size: 12px; }
    .top-left span { line-height: 1.45; }
    .top-right a { overflow-wrap: anywhere; }

    .navbar .container { height: 68px; }
    .logo img { height: 52px; }
    .menu { padding-left: 14px; padding-right: 14px; }
    .menu > li > a { font-size: 15px; }

    .section-title { margin-bottom: 38px; }
    .section-title span { font-size: 11px; letter-spacing: 2px; }
    .section-title h2 { font-size: 27px; line-height: 1.25; }

    .btn { min-height: 48px; padding: 12px 22px; }
    .hero-content { padding: 45px 0 72px; gap: 25px; }
    .hero-text p { margin-bottom: 25px; }
    .hero-image { margin-top: 0; }
    .hero-image img { max-height: 300px; }
    .dot { width: 10px; height: 10px; }

    .product-image img, .team-image img { height: 300px; }
    .category-card { height: 320px; }
    .category-card .overlay { left: 18px; right: 18px; bottom: 18px; }
    .offer-content h2, .cta-left h2 { font-size: 29px; }
    .about-content h2, .about-info h2, .modern-content h2 { font-size: 29px; }
    .experience-box, .experience { min-width: 0; padding: 22px; }

    .floating-card { padding: 15px; gap: 10px; }
    .floating-card h4 { font-size: 17px; }
    .timeline { margin-top: 38px; }
    .timeline-content { padding: 20px; }
    .footer-links { gap: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/*=========================================
MANUFACTURING GALLERY
=========================================*/

.gallery-section {
    padding: 110px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            transparent);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/*=========================================
TESTIMONIALS
=========================================*/

.about-testimonials {
    padding: 110px 0;
    background: #f8f8f8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .4s;
}

.testimonial-box:hover {
    transform: translateY(-10px);
}

.quote {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote i {
    color: #8B1E24;
    font-size: 28px;
}

.testimonial-box p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 22px;
    color: #111;
    margin-bottom: 5px;
}

.client-info span {
    color: #777;
}

/*=========================================
PARTNERS
=========================================*/

.partner-section {
    padding: 90px 0;
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    align-items: center;
    margin-top: 60px;
}

.partner-grid img {
    width: 100%;
    filter: grayscale(100%);
    opacity: .6;
    transition: .35s;
}

.partner-grid img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

/*=========================================
FAQ
=========================================*/

.faq-section {
    padding: 110px 0;
    background: #fafafa;
}

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.faq-question i {
    color: #8B1E24;
    transition: .3s;
}

.faq-answer {
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.9;
}

/*=========================================
BOTTOM CTA
=========================================*/

.about-bottom-banner {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)),
        url("../images/photos/6.png") center/cover;
    text-align: center;
}

.bottom-banner-content {
    max-width: 800px;
    margin: auto;
}

.bottom-banner-content h2 {
    color: #fff;
    font-size: 54px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
}

.bottom-banner-content p {
    color: #f0f0f0;
    line-height: 1.9;
    margin-bottom: 35px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: auto;
    }

}

@media(max-width:768px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-banner-content h2 {
        font-size: 38px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

}

@media(max-width:576px) {

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .bottom-banner-content h2 {
        font-size: 30px;
    }

    .bottom-banner-content .btn {
        width: 100%;
    }

}

/*==================================================
PRODUCT PAGE HERO
==================================================*/

.product-hero {
    position: relative;
    height: 360px;
    background: url("../images/photos/7.png") center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .25));
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

.product-hero-content {
    max-width: 700px;
}

.product-hero-content span {
    color: #d6aa55;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.product-hero-content h1 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Cinzel', serif;
}

.product-hero-content p {
    color: #f3f3f3;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 30px;
}

.product-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-hero .breadcrumb a {
    color: #fff;
}

.product-hero .breadcrumb strong {
    color: #d6aa55;
}

.product-hero .breadcrumb span {
    color: #fff;
}

/*==================================================
PRODUCT FILTER
==================================================*/

.product-filter {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

/*==================================================
SEARCH
==================================================*/

.search-box {
    position: relative;
    width: 380px;
    max-width: 100%;
}

.search-box input {
    width: 100%;
    height: 58px;
    border: 1px solid #ddd;
    border-radius: 60px;
    padding: 0 65px 0 25px;
    font-size: 15px;
    transition: .3s;
}

.search-box input:focus {
    border-color: #8B1E24;
    outline: none;
}

.search-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #8B1E24;
    color: #fff;
    transition: .35s;
}

.search-box button:hover {
    background: #111;
}

/*==================================================
CATEGORY FILTER
==================================================*/

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-filter button {
    padding: 13px 24px;
    border-radius: 40px;
    background: #f4f4f4;
    border: 1px solid #ececec;
    font-weight: 500;
    transition: .35s;
}

.category-filter button:hover,
.category-filter button.active {
    background: #8B1E24;
    color: #fff;
    border-color: #8B1E24;
}

/*==================================================
TOP BAR
==================================================*/

.product-topbar {
    background: #fafafa;
    padding: 28px 0;
    border-bottom: 1px solid #ececec;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-count {
    color: #555;
    font-size: 16px;
}

.product-count strong {
    color: #111;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-box label {
    font-weight: 600;
    color: #222;
}

.sort-box select {
    height: 48px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    outline: none;
}

/*==================================================
PRODUCT PAGE
==================================================*/

.products-page {
    padding: 100px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media(max-width:768px) {

    .product-hero {
        height: 320px;
    }

    .product-hero-content h1 {
        font-size: 42px;
    }

    .category-filter {
        justify-content: center;
    }

}

@media(max-width:576px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-content h1 {
        font-size: 34px;
    }

    .search-box input {
        height: 52px;
    }

}

/*==================================================
PRODUCT CARD
==================================================*/

.product-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

/*==================================================
PRODUCT IMAGE
==================================================*/

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: .6s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .10);
    opacity: 0;
    transition: .4s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/*==================================================
BADGES
==================================================*/

.product-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #8B1E24;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 40px;
    z-index: 5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-badge.sale {
    background: #d6aa55;
    color: #111;
}

/*==================================================
PRODUCT ICONS
==================================================*/

.product-icons {
    position: absolute;
    top: 20px;
    right: -70px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: .4s;
    z-index: 6;
}

.product-card:hover .product-icons {
    right: 20px;
}

.product-icons a {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: .35s;
}

.product-icons a:hover {
    background: #8B1E24;
    color: #fff;
    transform: rotate(360deg);
}

/*==================================================
PRODUCT CONTENT
==================================================*/

.product-content {
    padding: 28px;
    text-align: center;
}

.product-content .category {
    display: inline-block;
    color: #8B1E24;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-content h3 {
    font-size: 24px;
    color: #111;
    font-family: 'Cinzel', serif;
    line-height: 1.4;
    margin-bottom: 25px;
    transition: .3s;
}

.product-card:hover .product-content h3 {
    color: #8B1E24;
}

/*==================================================
PRODUCT BUTTON
==================================================*/

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.product-btn:hover {
    background: #8B1E24;
    letter-spacing: .5px;
}

/*==================================================
CARD BORDER EFFECT
==================================================*/

.product-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #8B1E24;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
    z-index: 10;
}

.product-card:hover::before {
    transform: scaleX(1);
}

/*==================================================
IMAGE SHINE EFFECT
==================================================*/

.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transform: skewX(-25deg);
    z-index: 2;
}

.product-card:hover .product-image::before {
    animation: shine 1s;
}

@keyframes shine {

    100% {
        left: 140%;
    }

}

/*==================================================
PRODUCT CARD RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .product-image img {
        height: 320px;
    }

}

@media(max-width:991px) {

    .product-content {
        padding: 24px;
    }

    .product-content h3 {
        font-size: 22px;
    }

}

@media(max-width:768px) {

    .product-image img {
        height: 300px;
    }

    .product-icons {
        right: 20px;
    }

}

@media(max-width:576px) {

    .product-card {
        max-width: 380px;
        margin: auto;
    }

    .product-image img {
        height: 340px;
    }

    .product-content h3 {
        font-size: 20px;
    }

}

/*==================================================
PAGINATION
==================================================*/

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 70px;
}

.page-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.page-btn:hover,
.page-btn.active {
    background: #8B1E24;
    color: #fff;
    border-color: #8B1E24;
    transform: translateY(-3px);
}

/*==================================================
WHY CHOOSE PRODUCTS
==================================================*/

.product-benefits {
    padding: 110px 0;
    background: #f8f8f8;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #8B1E24;
    transform: scaleX(0);
    transition: .35s;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.benefit-icon {
    width: 85px;
    height: 85px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.benefit-icon i {
    font-size: 34px;
    color: #8B1E24;
    transition: .35s;
}

.benefit-card:hover .benefit-icon {
    background: #8B1E24;
}

.benefit-card:hover .benefit-icon i {
    color: #fff;
}

.benefit-card h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
PRODUCT CTA
==================================================*/

.product-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #111, #2a2a2a);
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-content {
    max-width: 700px;
}

.cta-content span {
    color: #d6aa55;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.cta-content h2 {
    color: #fff;
    font-size: 52px;
    margin: 18px 0;
    line-height: 1.2;
    font-family: 'Cinzel', serif;
}

.cta-content p {
    color: #ddd;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-buttons .outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons .outline:hover {
    background: #fff;
    color: #111;
}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter {
    padding: 100px 0;
    background: #8B1E24;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-content span {
    color: #f3d17d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.newsletter-content h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

.newsletter-content p {
    color: #f4f4f4;
}

.newsletter form {
    display: flex;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    min-width: 520px;
}

.newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 16px;
}

.newsletter button {
    border-radius: 0;
    padding: 18px 35px;
}

/*==================================================
ANIMATIONS
==================================================*/

.benefit-card,
.cta-box,
.newsletter-content {
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter form {
        min-width: 100%;
        max-width: 650px;
    }

}

@media(max-width:768px) {

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .newsletter-content h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .newsletter form {
        flex-direction: column;
        background: transparent;
        gap: 15px;
    }

    .newsletter input {
        border-radius: 12px;
    }

    .newsletter button {
        width: 100%;
        border-radius: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

}

/*==================================================
PRODUCT PAGE DECORATIONS
==================================================*/

.products-page {
    position: relative;
    overflow: hidden;
}

.products-page::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .04);
    top: -180px;
    right: -180px;
}

.products-page::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(214, 170, 85, .06);
    bottom: -150px;
    left: -150px;
}

/*==================================================
HOVER EFFECTS
==================================================*/

.product-card,
.benefit-card,
.page-btn {
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.page-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

/*==================================================
CUSTOM SCROLLBAR
==================================================*/

.products-page::-webkit-scrollbar {
    width: 10px;
}

.products-page::-webkit-scrollbar-thumb {
    background: #8B1E24;
    border-radius: 20px;
}

.products-page::-webkit-scrollbar-track {
    background: #f4f4f4;
}

/*==================================================
IMAGE LOADER EFFECT
==================================================*/

.product-image {
    background: linear-gradient(90deg,
            #f2f2f2 25%,
            #fafafa 50%,
            #f2f2f2 75%);
    background-size: 200% 100%;
    animation: imageLoader 2s infinite linear;
}

.product-image img {
    background: #fff;
}

@keyframes imageLoader {

    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }

}

/*==================================================
BUTTON EFFECTS
==================================================*/

.btn,
.product-btn {
    position: relative;
    overflow: hidden;
}

.btn::before,
.product-btn::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .25);

    transform: skewX(-30deg);

    transition: .5s;

}

.btn:hover::before,
.product-btn:hover::before {

    left: 120%;

}

/*==================================================
SECTION TITLE ANIMATION
==================================================*/

.section-title span {
    animation: fadeDown .8s ease;
}

.section-title h2 {
    animation: fadeUp .8s ease;
}

.section-title p {
    animation: fadeUp 1s ease;
}

@keyframes fadeDown {

    from {

        opacity: 0;

        transform: translateY(-20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==================================================
SOFT SHADOWS
==================================================*/

.product-card {

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06),
        0 20px 50px rgba(0, 0, 0, .04);

}

.product-card:hover {

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .12),
        0 35px 70px rgba(0, 0, 0, .08);

}

/*==================================================
FADE IN
==================================================*/

.products-grid .product-card {

    animation: fadeProduct .8s ease both;

}

.products-grid .product-card:nth-child(2) {

    animation-delay: .1s;

}

.products-grid .product-card:nth-child(3) {

    animation-delay: .2s;

}

.products-grid .product-card:nth-child(4) {

    animation-delay: .3s;

}

.products-grid .product-card:nth-child(5) {

    animation-delay: .4s;

}

.products-grid .product-card:nth-child(6) {

    animation-delay: .5s;

}

.products-grid .product-card:nth-child(7) {

    animation-delay: .6s;

}

.products-grid .product-card:nth-child(8) {

    animation-delay: .7s;

}

.products-grid .product-card:nth-child(9) {

    animation-delay: .8s;

}

.products-grid .product-card:nth-child(10) {

    animation-delay: .9s;

}

.products-grid .product-card:nth-child(11) {

    animation-delay: 1s;

}

.products-grid .product-card:nth-child(12) {

    animation-delay: 1.1s;

}

@keyframes fadeProduct {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==================================================
UTILITY CLASSES
==================================================*/

.text-primary {

    color: #8B1E24;

}

.bg-primary {

    background: #8B1E24;

}

.text-center {

    text-align: center;

}

.radius {

    border-radius: 20px;

}

.shadow {

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

/*==================================================
FINAL RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .products-page {

        padding: 80px 0;

    }

}

@media(max-width:991px) {

    .product-card {

        max-width: 420px;

        margin: auto;

    }

}

@media(max-width:768px) {

    .products-page {

        padding: 70px 0;

    }

    .page-btn {

        width: 44px;

        height: 44px;

    }

}

@media(max-width:576px) {

    .product-card {

        max-width: 100%;

    }

    .product-content {

        padding: 22px;

    }

    .product-content h3 {

        font-size: 20px;

    }

}

/*==================================================
CONTACT HERO
==================================================*/

.contact-hero {
    position: relative;
    height: 360px;
    background: url("../images/photos/8.png") center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .25));
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 700px;
}

.contact-hero-content span {
    display: inline-block;
    color: #d6aa55;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-hero-content h1 {
    font-size: 64px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.contact-hero-content p {
    color: #f2f2f2;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 30px;
}

.contact-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-hero .breadcrumb a {
    color: #fff;
}

.contact-hero .breadcrumb span {
    color: #fff;
}

.contact-hero .breadcrumb strong {
    color: #d6aa55;
}

/*==================================================
CONTACT INFO
==================================================*/

.contact-info-section {
    padding: 110px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #8B1E24;
    transform: scaleX(0);
    transition: .35s;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.contact-icon i {
    font-size: 36px;
    color: #8B1E24;
    transition: .35s;
}

.contact-card:hover .contact-icon {
    background: #8B1E24;
}

.contact-card:hover .contact-icon i {
    color: #fff;
}

.contact-card h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    min-height: 65px;
    margin-bottom: 20px;
}

.contact-card a {
    color: #8B1E24;
    font-weight: 600;
    transition: .3s;
}

.contact-card a:hover {
    color: #111;
}

/*==================================================
SECTION TITLE
==================================================*/

.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.section-title span {
    display: inline-block;
    color: #8B1E24;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 46px;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Cinzel', serif;
}

.section-title p {
    color: #666;
    line-height: 1.9;
}

/*==================================================
COMMON BUTTON
==================================================*/

.contact-card a,
.btn {
    transition: .35s;
}

.btn:hover {
    transform: translateY(-3px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .contact-hero {
        height: 360px;
    }

    .contact-hero-content h1 {
        font-size: 48px;
    }

}

@media(max-width:768px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .contact-card {
        padding: 35px 25px;
    }

}

@media(max-width:576px) {

    .contact-hero {
        height: 300px;
    }

    .contact-hero-content h1 {
        font-size: 34px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }

}

/*==================================================
CONTACT FORM SECTION
==================================================*/

.contact-form-section {
    padding: 110px 0;
    background: #f8f8f8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*==================================================
LEFT CONTENT
==================================================*/

.contact-content span {
    display: inline-block;
    color: #8B1E24;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-content h2 {
    font-size: 46px;
    color: #111;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
}

.contact-content>p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/*==================================================
FEATURE BOX
==================================================*/

.contact-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.contact-feature:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.feature-icon i {
    color: #8B1E24;
    font-size: 24px;
}

.contact-feature:hover .feature-icon {
    background: #8B1E24;
}

.contact-feature:hover .feature-icon i {
    color: #fff;
}

.contact-feature h4 {
    font-size: 22px;
    color: #111;
    margin-bottom: 8px;
}

.contact-feature p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
SOCIAL LINKS
==================================================*/

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8B1E24;
    color: #fff;
    transition: .35s;
}

.social-links a:hover {
    background: #111;
    transform: translateY(-5px);
}

/*==================================================
CONTACT FORM
==================================================*/

.contact-form-box {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 34px;
    color: #111;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.form-header p {
    color: #666;
    line-height: 1.8;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    transition: .3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8B1E24;
    box-shadow: 0 0 0 3px rgba(139, 30, 36, .08);
}

.form-group textarea {
    resize: vertical;
}

.contact-form-box button {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/*==================================================
WHY CONTACT US
==================================================*/

.why-contact {
    padding: 110px 0;
    background: #fff;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-box {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    border: 1px solid #eee;
}

.why-box:hover {
    transform: translateY(-10px);
}

.why-box i {
    width: 85px;
    height: 85px;
    margin: auto auto 22px;
    border-radius: 50%;
    background: rgba(139, 30, 36, .08);
    color: #8B1E24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: .35s;
}

.why-box:hover i {
    background: #8B1E24;
    color: #fff;
}

.why-box h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.why-box p {
    color: #666;
    line-height: 1.8;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .why-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

}

@media(max-width:768px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 34px;
    }

    .contact-form-box {
        padding: 30px;
    }

    .why-contact-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .contact-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .social-links {
        flex-wrap: wrap;
    }

}

/*==================================================
GOOGLE MAP
==================================================*/

.contact-map {
    padding: 110px 0;
    background: #f8f8f8;
}

.map-wrapper {
    margin-top: 60px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.map-wrapper iframe {
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}

/*==================================================
FAQ SECTION
==================================================*/

.contact-faq {
    padding: 110px 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-title {
    width: 100%;
    padding: 24px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    transition: .3s;
}

.faq-title:hover {
    color: #8B1E24;
}

.faq-title i {
    color: #8B1E24;
    transition: .3s;
}

.faq-item.active .faq-title i {
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    padding: 0 30px 30px;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-content p {
    color: #666;
    line-height: 1.9;
}

/*==================================================
CONTACT CTA
==================================================*/

.contact-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #111, #2d2d2d);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    right: -180px;
    top: -180px;
}

.contact-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    left: -120px;
    bottom: -120px;
}

.contact-cta .cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.contact-cta .cta-content {
    max-width: 700px;
}

.contact-cta .cta-content span {
    display: inline-block;
    color: #d6aa55;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-cta .cta-content h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.contact-cta .cta-content p {
    color: #ddd;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    text-align: center;
}

.cta-buttons .outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons .outline:hover {
    background: #fff;
    color: #111;
}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter {
    padding: 100px 0;
    background: #8B1E24;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-content span {
    color: #f5d18d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.newsletter-content h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
    font-family: 'Cinzel', serif;
}

.newsletter-content p {
    color: #f3f3f3;
}

.newsletter form {
    display: flex;
    min-width: 520px;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
}

.newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 16px;
}

.newsletter button {
    border-radius: 0;
    padding: 18px 35px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .contact-cta .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter form {
        min-width: 100%;
        max-width: 650px;
    }

}

@media(max-width:768px) {

    .map-wrapper iframe {
        height: 400px;
    }

    .contact-cta .cta-content h2 {
        font-size: 36px;
    }

    .newsletter-content h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .faq-title {
        padding: 20px;
        font-size: 16px;
    }

    .faq-content {
        padding: 0 20px 20px;
    }

    .newsletter form {
        flex-direction: column;
        background: transparent;
        gap: 15px;
    }

    .newsletter input {
        border-radius: 12px;
    }

    .newsletter button {
        width: 100%;
        border-radius: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

}

/*==================================================
FOOTER
==================================================*/

.footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 90px 0 0;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B1E24, #d6aa55, #8B1E24);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 45px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer p {
    color: #bfbfbf;
    line-height: 1.9;
}

.footer-col h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #8B1E24;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #bdbdbd;
    transition: .35s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact i {
    color: #8B1E24;
    margin-top: 4px;
    min-width: 18px;
}

.footer-contact span {
    color: #d5d5d5;
    line-height: 1.8;
}

/*==================================================
SOCIAL
==================================================*/

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1d1d1d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.footer-social a:hover {
    background: #8B1E24;
    transform: translateY(-5px);
}

/*==================================================
COPYRIGHT
==================================================*/

.footer-bottom {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    background: #090909;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: #bfbfbf;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #bfbfbf;
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
}

/*==================================================
SCROLL TOP
==================================================*/

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #8B1E24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    transition: .35s;
    z-index: 999;
}

.scroll-top:hover {
    background: #111;
    transform: translateY(-6px);
}

/*==================================================
ANIMATIONS
==================================================*/

.contact-card,
.contact-form-box,
.why-box,
.faq-item,
.footer-col {
    animation: fadeUp .8s ease both;
}

.contact-card:nth-child(2) {
    animation-delay: .1s;
}

.contact-card:nth-child(3) {
    animation-delay: .2s;
}

.contact-card:nth-child(4) {
    animation-delay: .3s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*==================================================
UTILITY CLASSES
==================================================*/

.shadow {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.radius {
    border-radius: 20px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: #8B1E24;
}

.bg-primary {
    background: #8B1E24;
}

/*==================================================
FINAL RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

}

@media(max-width:576px) {

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 18px;
    }

}
