/*=====================================================

    EXIRA LAMINATES

    HEADER

=====================================================*/
:root {
    --primary: #6d142a;
    --primary-dark: #4a0d1d;
    --secondary: #cda56b;
    --heading: #202020;
    --text: #666666;
    --white: #ffffff;
    --black: #000000;
    --border: #ece8e4;
    --header-height: 96px;
    --header-sticky-height: 82px;
    --container: 1480px;
    --radius: 14px;
    --transition: .35s ease;
    --shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #000;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 28px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

svg {
    display: block;
}

.header-container {
    width: min(calc(100% - 80px), var(--container));
    margin: auto;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 34px;
    border-radius: 100px;
    background: var(--primary);
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    transition: all .35s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
    z-index: -1;
}

.btn-main:hover::before {
    transform: scaleX(1);
}

.btn-main:hover {
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 34px;
    border-radius: 100px;
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: .35s;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: var(--header-height);
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}

.site-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header {
    background: transparent;
}

.site-header.sticky {
    height: var(--header-sticky-height);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.site-header.hide {
    transform: translateY(-100%);
}

.site-header.show {
    transform: translateY(0);
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 56px;
    transition: .35s;
}

.site-header.sticky .site-logo img {
    height: 46px;
}

.site-nav {
    margin-left: auto;
    margin-right: 50px;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.site-menu>li {
    position: relative;
}

.site-menu>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 96px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.site-header.sticky .site-menu>li>a {
    color: var(--heading);
}

.site-menu>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.site-menu>li:hover>a::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.menu-toggle .icon {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: .35s;
}

.site-header.sticky .menu-toggle {
}

.site-header.sticky .menu-toggle .icon {
    fill: var(--primary);
}

.menu-toggle:hover {
    /* background:var(--primary); */
}

.menu-toggle:hover .icon {
    /* fill:#fff; */
}

.dropdown-arrow {
    width: 13px;
    height: 13px;
    transition: .35s;
}

.icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    fill: currentColor;
    flex-shrink: 0;
}

/*=====================================================
    DESKTOP DROPDOWN
=====================================================*/
.has-dropdown {
    position: relative;
}

.site-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 260px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(30px);
    transition: .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 100;
}

.has-dropdown:hover .site-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.site-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 26px;
    color: var(--heading);
    font-size: 15px;
    transition: .3s;
    position: relative;
}

.site-dropdown a::before {
    content: "";
    position: absolute;
    left: 26px;
    bottom: 10px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .35s;
}

.site-dropdown a:hover {
    color: var(--primary);
    padding-left: 34px;
}

.site-dropdown a:hover::before {
    width: 26px;
}

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.mobile-logo img {
    height: 48px;
}

.mobile-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--heading);
    transition: .3s;
}

.mobile-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

/*=====================================================
    SIDE PANEL
=====================================================*/
.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 470px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transform: translateX(100%);
    transition: .6s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .12);
}

.side-panel.active {
    transform: translateX(0);
}

.side-panel-inner {
    padding: 60px;
}

.panel-close {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    margin-left: auto;
    transition: .35s;
    font-size: 22px;
}

.panel-close:hover {
    background: var(--primary);
    color: #fff;
}

.panel-logo {
    margin: 60px 0;
}

.panel-logo img {
    height: 70px;
}

.panel-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-nav a {
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: var(--heading);
    transition: .35s;
    padding: 6px 0;
}

.panel-nav a:hover {
    color: var(--primary);
    transform: translateX(12px);
}

.panel-divider {
    width: 100%;
    height: 1px;
    background: #ececec;
    margin: 45px 0;
}

.panel-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.panel-contact a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text);
    transition: .35s;
    line-height: 1.7;
}

.panel-contact a:hover {
    color: var(--primary);
}

.panel-contact .icon {
    width: 22px;
    height: 22px;
    margin-top: 4px;
}

.panel-social {
    display: flex;
    gap: 16px;
}

.panel-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    transition: .35s;
}

.panel-social .icon {
    width: 20px;
    height: 20px;
}

.panel-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

/*=====================================================
    OVERLAY
=====================================================*/
.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: .45s;
    z-index: 9998;
}

.side-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.no-scroll {
    overflow: hidden;
}

.side-panel::-webkit-scrollbar {
    width: 8px;
}

.side-panel::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 20px;
}

.side-panel::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(109, 20, 42, .08), transparent 70%);
    pointer-events: none;
}

/*=====================================================
    MOBILE HEADER
=====================================================*/
.mobile-nav-logo img
{
    width: 210px;
}
.mobile-nav {
    position: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 82px;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(-100%);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 30px 40px;
    margin-top: 0;
    position: relative;
    height: 100%;
}

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom:50px; */
    position: absolute;
    right: 20px;
    top: 10px;
}

.mobile-nav ul {
    padding: 20px 30px 35px;
}

.mobile-nav li {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav li:last-child {
    border: none;
    margin-top: 20px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 18px 0;
    color: var(--heading);
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.mobile-nav a:hover {
    /* color: var(--primary); */
}

.mobile-nav .btn-main {
    width: 100%;
}

/*=====================================================
    MOBILE DROPDOWN
=====================================================*/
.mobile-dropdown {
    overflow: hidden;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    /* color: var(--heading); */
    font-size: 16px;
    font-weight: 500;
}

.mobile-dropdown-toggle .icon {
    width: 16px;
    height: 16px;
    transition: .35s;
}

.mobile-dropdown.active .mobile-dropdown-toggle .icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.22, 1, .36, 1);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu a {
    padding: 14px 0 14px 24px;
    font-size: 15px;
    color: #666;
    position: relative;
}

.mobile-submenu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

/*=====================================================
    HAMBURGER BUTTON
=====================================================*/
.menu-toggle {
    position: relative;
}

.menu-toggle svg {
    transition: .35s;
}

.menu-toggle.active svg {
    /* transform:rotate(90deg); */
}

/*=====================================================
    MENU TOGGLE ANIMATION
=====================================================*/
.mobile-nav li {
    opacity: 0;
    transform: translateY(15px);
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}

.mobile-nav.active li {
    opacity: 1;
    transform: none;
}

.mobile-nav.active li:nth-child(1) {
    transition-delay: .05s;
}

.mobile-nav.active li:nth-child(2) {
    transition-delay: .10s;
}

.mobile-nav.active li:nth-child(3) {
    transition-delay: .15s;
}

.mobile-nav.active li:nth-child(4) {
    transition-delay: .20s;
}

.mobile-nav.active li:nth-child(5) {
    transition-delay: .25s;
}

.mobile-nav.active li:nth-child(6) {
    transition-delay: .30s;
}

.mobile-nav.active li:nth-child(7) {
    transition-delay: .35s;
}

/*=====================================================
    MOBILE LAYOUT
=====================================================*/
@media (max-width: 991px) {
    .site-nav {
        display: none;
    }

    .header-right .btn-main {
        display: none;
    }

    .header-container {
        width: calc(100% - 40px);
    }

    .site-header {
        height: 82px;
    }

    .site-logo img {
        height: 46px;
    }

    .site-header.sticky {
        height: 76px;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
    }

    .menu-toggle .icon {
        width: 22px;
        height: 22px;
        fill: var(--primary);
    }

    .site-header.sticky .menu-toggle .icon {
        fill: var(--primary);
    }
}

/*=====================================================
    DESKTOP
=====================================================*/
@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

/*=====================================================
    HERO SLIDER
=====================================================*/
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    background: #111;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

/*=====================================================
    BACKGROUND IMAGE
=====================================================*/
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.swiper-slide-active .hero-bg img {
    transform: scale(1.08);
}

/*=====================================================
    OVERLAY
=====================================================*/
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.22) 35%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.12) 100% );
}

/*=====================================================
    CONTENT WRAPPER
=====================================================*/
.hero-content-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content-wrap .container {
    width: min(calc(100% - 80px),1480px);
    margin: auto;
}

/*=====================================================
    CONTENT
=====================================================*/
.hero-content {
        max-width: 750px;
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
}

.hero-content h1, .hero-content h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
}

.hero-content p {
    margin-top: 15px;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.9;
    color: rgb(0 0 0 / 88%);
}

/*=====================================================
    BUTTON
=====================================================*/
.hero-buttons {
    margin-top: 45px;
}

.hero-buttons .btn-main {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-inline:38px; }

.hero-buttons .icon {
    width: 18px;
    height: 18px;
    transition: .35s;
}

.hero-buttons .btn-main:hover .icon {
    transform: translateX(6px);
}

/*=====================================================
    HERO ANIMATION DEFAULT
=====================================================*/
.hero-subtitle, .hero-content h1, .hero-content h2, .hero-content p, .hero-buttons {
    opacity: 0;
    transform: translateY(45px);
}

/*=====================================================
    ACTIVE SLIDE ANIMATION
=====================================================*/
.swiper-slide-active .hero-subtitle {
    animation: heroFade .8s .3s forwards;
    color: var(--primary);
}

.swiper-slide-active h1, .swiper-slide-active h2 {
    animation: heroFade .9s .55s forwards;
}

.swiper-slide-active p {
    animation: heroFade .9s .85s forwards;
}

.swiper-slide-active .hero-buttons {
    animation: heroFade .9s 1.15s forwards;
}

/*=====================================================
    KEYFRAME
=====================================================*/
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=====================================================
    HERO NAVIGATION
=====================================================*/
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    z-index: 20;
    transition: .35s;
    border: 1px solid rgba(255,255,255,.15);
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

.hero-prev:hover, .hero-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev .icon, .hero-next .icon {
    width: 18px;
    height: 18px;
}

.hero-prev .icon {
    transform: rotate(180deg);
}

/*=====================================================
    PAGINATION
=====================================================*/
.hero-pagination {
    position: absolute;
    left: 50% !important;
    bottom: 72px !important;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.35);
    opacity: 1;
    transition: .35s;
    margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 42px;
    border-radius: 20px;
    background: var(--secondary);
}

/*=====================================================
    SCROLL INDICATOR
=====================================================*/
.hero-scroll {
    position: absolute;
    left: 50px;
    bottom: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-scroll span {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: .8;
}

.hero-scroll-line {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    from {
        top: -100%;
    }

    to {
        top: 100%;
    }
}

/*=====================================================
    SLIDE COUNTER
=====================================================*/
.hero-counter {
    position: absolute;
    right: 50px;
    bottom: 68px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.hero-counter .divider {
    width: 45px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

/*=====================================================
    RESPONSIVE
=====================================================*/
@media(max-width: 1200px) {
    .hero-content h1, .hero-content h2 {
        font-size:60px;
    }
}

@media(max-width: 991px) {
    .hero-slider {
        height: 45vh;
        min-height: auto;
    }

    .hero-content-wrap {
        padding-top: 120px;
        padding-bottom: 110px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1, .hero-content h2 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .hero-prev, .hero-next {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-counter {
        right: 25px;
        bottom: 28px;
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    .hero-content-wrap .container {
        width:calc(100% - 40px);
    }

    .hero-content {
        /* text-align:center; */
        margin: auto;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-content h1, .hero-content h2 {
        font-size: 25px;
        line-height: 1.15;
        font-weight:700
    }

    .hero-content p {
        display: none;
    }

    .hero-buttons {
        margin-top: 30px;
    }

    .hero-buttons .btn-main {
        /* width:100%; */
        justify-content: center;
        height: 40px;
        padding: 0 15px;
    }

    .hero-pagination {
        bottom: 24px !important;
    }

    .hero-counter {
        display: none;
    }
}

@media(max-width: 480px) {
    .hero-content h1, .hero-content h2 {
        font-size:20px;
    }

    .hero-content p {
        font-size: 14px;
    }
}


/*=====================================================
    ABOUT SECTION
=====================================================*/

.about-section{position:relative;background:#f9f4f5;padding:140px 0 120px;/* overflow:hidden; */}



/*=====================================================
    COMMON SECTION STYLES
    (Reuse throughout the project)
=====================================================*/

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:17px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title{

    color:var(--heading);

    font-size:64px;

    line-height:1.1;

    font-weight:700;

    margin:0;

}

.section-line{

    display:block;

    width:82px;

    height:3px;

    background:var(--secondary);

    margin:32px 0;

}

.section-text{

    max-width:620px;

    line-height:2;

    color:var(--text);

    margin-bottom:40px;

}



/*=====================================================
    OUTLINE BUTTON
=====================================================*/

.btn-outline-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    height:58px;

    padding:0 36px;

    border:2px solid var(--primary);

    color:var(--primary);

    background:transparent;

    font-size:16px;

    font-weight:600;

    transition:all .4s ease;

    position:relative;

    overflow:hidden;

    z-index:1;

}

.btn-outline-primary::before{

    content:"";

    position:absolute;

    inset:0;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

    z-index:-1;

}

.btn-outline-primary:hover{

    color:#fff;

}

.btn-outline-primary:hover::before{

    transform:scaleX(1);

}

.btn-outline-primary .icon{

    width:18px;

    height:18px;

    transition:.35s;

}

.btn-outline-primary:hover .icon{

    transform:translateX(8px);

}



/*=====================================================
    FEATURE STRIP
=====================================================*/

.feature-strip{

    position:absolute;

    left:0;

    top:-72px;

    width:100%;

    z-index:20;

}

.feature-strip .header-container{

    max-width:1220px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    background:#fff;

    border-radius:22px;

    padding:34px 40px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.feature-item{

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

}

.feature-item:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    flex-shrink:0;

}

.feature-icon .icon{

    width:44px;

    height:44px;

    fill:currentColor;

}

.feature-content h4{

    margin:0 0 6px;

    color:var(--primary);

    font-size:21px;

    font-weight:600;

}

.feature-content p{

    margin:0;

    line-height:1.6;

    color:var(--heading);

}


/*=====================================================
    ABOUT SECTION
=====================================================*/

.about-section{position:relative;background:#f9f4f5;padding: 180px 0 0px;/* overflow:hidden; */}

.about-section .container{

    position:relative;

    z-index:2;

}



/*=====================================================
    FLOATING FEATURES
=====================================================*/

.about-features{position: absolute;left:0;top: -220px;width:100%;background:#fff;border-radius:24px;padding:42px 40px;box-shadow:0 18px 50px rgba(0,0,0,.08);z-index: 999999999;}

.feature-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.feature-icon{

    flex-shrink:0;

}

.feature-icon .icon{

    width:46px;

    height:46px;

    fill:var(--primary);

}

.feature-content h4{margin:0 0 6px;font-size: 16px;font-weight:600;color:var(--primary);text-transform:uppercase;line-height:1.1;}

.feature-content p{

    margin:0;

    color:var(--heading);

}



/*=====================================================
    CONTENT
=====================================================*/

.about-content{max-width:500px;padding-bottom: 100px;}

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:1.5px;

    font-size:18px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title{margin:0;color:var(--heading);font-size: 39px;line-height:1.08;font-weight:700;text-transform:uppercase;}

.section-line{

    display:block;

    width:90px;

    height:3px;

    background:#d7a57d;

    margin:34px 0;

}

.about-content p{

    line-height:2;

    margin-bottom:45px;

}



/*=====================================================
    IMAGE
=====================================================*/

.about-image{

    position:relative;

    text-align:right;

}

.about-image img{

    max-width:100%;

    display:block;

    margin-left:auto;

}



/*=====================================================
    SHAPE
=====================================================*/

.about-shape{position:absolute;right: -210px;bottom: -180px;width:420px;opacity:.18;pointer-events:none;}



/*=====================================================
    COMMON SCROLL ANIMATION
=====================================================*/

.reveal{

    opacity:0;

    transition:1s cubic-bezier(.22,1,.36,1);

}

.reveal-up{

    transform:translateY(80px);

}

.reveal-left{

    transform:translateX(-80px);

}

.reveal-right{

    transform:translateX(80px);

}

.reveal.show{

    opacity:1;

    transform:none;

}



/*=====================================================
    BUTTON IMPROVEMENT
=====================================================*/

.btn-outline{

    display:inline-flex;

    align-items:center;

    gap:14px;

    overflow:hidden;

    position:relative;

    z-index:1;

}

.btn-outline::before{

    content:"";

    position:absolute;

    inset:0;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

    z-index:-1;

}

.btn-outline:hover{

    color:#fff;

    border-color:var(--primary);

}

.btn-outline:hover::before{

    transform:scaleX(1);

}

.btn-outline .icon{

    width:20px;

    height:20px;

}



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

@media(max-width:991px){

    .about-section{padding: 50px 0;}

    .about-features{

        position:relative;

        top:0;

        margin-bottom:60px;

        padding:30px;

        border-radius:20px;

    }

    .feature-item{

        justify-content:flex-start;

    }

    .section-title{

        font-size:42px;

    }

    .about-content{max-width:100%;padding-bottom: 10px;}

    .about-image{

        text-align:center;

    }

    .about-image img{

        margin:auto;

    }

    .about-shape{

        width:220px;

        right:-70px;

        bottom:-30px;

    }

}

@media(max-width:767px){

    .about-features{

        padding:25px;

    }

    .feature-item{

        gap:14px;

    }

    .feature-icon .icon{

        width:38px;

        height:38px;

    }

    .feature-content h4{font-size: 17px;}

    .section-title{

        font-size:34px;

    }

    .section-line{

        margin:26px 0;

    }

    .about-content p{

        margin-bottom:35px;

    }

}


/*=====================================================
    COLLECTIONS SECTION
=====================================================*/

.collections-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:#fff;

}

.collections-section .container{

    position:relative;

    z-index:2;

}



/*=====================================================
    DECORATIVE SHAPES
=====================================================*/

.collections-shape{

    position:absolute;

    pointer-events:none;

    user-select:none;

    z-index:1;

}

.collections-shape-left{

    top:0;

    left:0;

    width:340px;

}

.collections-shape-right{

    right:0;

    bottom:0;

    width:320px;

}



/*=====================================================
    SECTION HEADING
=====================================================*/

.collections-heading{

    text-align:center;

    margin-bottom:70px;

}

.collections-heading .section-subtitle{

    margin-bottom:18px;

}

.collections-heading .section-title{

    margin-bottom:0;

}



/*=====================================================
    SWIPER
=====================================================*/

.collections-slider{

    position:relative;

    overflow:hidden;

    padding-bottom:20px;

}

.collections-slider .swiper-wrapper{

    align-items:stretch;

}

.collections-slider .swiper-slide{

    height:auto;

}



/*=====================================================
    COLLECTION CARD
=====================================================*/

.collection-card{

    display:block;

    text-align:center;

    transition:.45s cubic-bezier(.22,1,.36,1);

}

.collection-image{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#f7f7f7;

    margin-bottom:24px;

}

.collection-image img{

    width:100%;

    display:block;

    transition:1s cubic-bezier(.22,1,.36,1);

}

.collection-content h3{margin:0;color:var(--heading);font-size: 19px;font-weight:500;transition:.35s;text-transform:uppercase;line-height:1.4;}
/*=====================================================
    CARD HOVER EFFECT
=====================================================*/

.collection-card:hover{

    transform:translateY(-12px);

}

.collection-card:hover .collection-image img{

    transform:scale(1.08);

}

.collection-card:hover .collection-content h3{

    color:var(--primary);

}

.collection-image::before{

    content:"";

    position:absolute;

    inset:0;


    opacity:0;

    transition:.45s;

    z-index:1;

}

.collection-card:hover .collection-image::before{

    opacity:1;

}

.collection-image::after{

    content:"";

    position:absolute;

    inset:18px;

    border:1px solid rgba(255,255,255,.55);

    border-radius:12px;

    opacity:0;

    transform:scale(.9);

    transition:.45s;

    z-index:2;

}

.collection-card:hover .collection-image::after{

    opacity:1;

    transform:scale(1);

}



/*=====================================================
    BUTTON
=====================================================*/

.collections-button{

    text-align:center;

    margin-top:70px;

}

.collections-button .btn-main{

    min-width:280px;

}

.collections-button .btn-main .icon{

    width:18px;

    height:18px;

    margin-left:12px;

}



/*=====================================================
    SWIPER PAGINATION
=====================================================*/

.collections-slider .swiper-pagination{

    position:relative;

    margin-top:45px;

}

.collections-slider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#d6d6d6;

    opacity:1;

    transition:.35s;

}

.collections-slider .swiper-pagination-bullet-active{

    width:34px;

    border-radius:20px;

    background:var(--primary);

}



/*=====================================================
    SWIPER NAVIGATION
=====================================================*/

.collections-slider .swiper-button-next,
.collections-slider .swiper-button-prev{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.collections-slider .swiper-button-next::after,
.collections-slider .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

.collections-slider .swiper-button-next:hover,
.collections-slider .swiper-button-prev:hover{

    background:var(--primary);

    color:#fff;

}



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

@media(max-width:991px){

    .collections-section{

        padding:90px 0;

    }

    .collections-heading{

        margin-bottom:50px;

    }

    .collections-button{margin-top: 10px;}

    .collections-shape-left{

        width:200px;

    }

    .collections-shape-right{

        width:180px;

    }

}

@media(max-width:767px){

    .collections-section{

        padding:70px 0;

    }

    .collection-image{

        border-radius:16px;

        margin-bottom:18px;

    }

    .collection-content h3{

        font-size:18px;

    }

    .collections-button .btn-main{

        width:100%;

        min-width:0;

    }

    .collections-shape-left{

        width:140px;

    }

    .collections-shape-right{

        width:140px;

    }

    .collections-slider .swiper-button-next,
    .collections-slider .swiper-button-prev{

        display:none;

    }

}

/*=====================================================
    APPLICATIONS SECTION
=====================================================*/

.applications-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(135deg,#4a0d1d 0%,#6d142a 100%);

}

.applications-section .container{

    position:relative;

    z-index:2;

}



/*=====================================================
    BACKGROUND LOGO SHAPE
=====================================================*/

.applications-bg-shape{

    position:absolute;

    left:-140px;

    bottom:-70px;

    width:520px;

    opacity:.06;

    pointer-events:none;

    user-select:none;

    z-index:1;

}



/*=====================================================
    LEFT CONTENT
=====================================================*/

.applications-content{

    position:relative;

    max-width:470px;

}

.applications-content .section-subtitle{

    color:#d7a57d;

}

.applications-content .section-title{

    color:#fff;

}

.applications-content .section-line{

    background:#d7a57d;

}

.applications-content p{

    color:rgba(255,255,255,.92);

    line-height:2;

    margin-bottom:45px;

}



/*=====================================================
    BUTTON
=====================================================*/

.applications-content .btn-outline{

    border:2px solid #d7a57d;

    color:#fff;

}

.applications-content .btn-outline::before{

    background:#d7a57d;

}

.applications-content .btn-outline:hover{

    color:#4a0d1d;

}

.applications-content .btn-outline .icon{

    width:18px;

    height:18px;

}



/*=====================================================
    RIGHT SIDE GRID
=====================================================*/

.applications-grid{

    position:relative;

    width:100%;

}



/*=====================================================
    COMMON CARD BASE
=====================================================*/

.application-card{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:205px;border:1px solid rgba(215,165,125,.85);border-radius:22px;background:rgba(255,255,255,.02);backdrop-filter:blur(2px);transition:.45s cubic-bezier(.22,1,.36,1);overflow:hidden;margin: 0 0 30px;}

.application-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,0));

    opacity:0;

    transition:.45s;

}

.application-card>*{

    position:relative;

    z-index:2;

}

.application-icon{

    margin-bottom:24px;

}

.application-icon .icon{

    width:58px;

    height:58px;

    fill:#d7a57d;

}

.application-card h3{margin:0;color:#fff;font-size: 21px;font-weight:500;transition:.35s;}

/*=====================================================
    CARD HOVER EFFECT
=====================================================*/

.application-card:hover{

    transform:translateY(-12px);

    border-color:#d7a57d;

    box-shadow:0 18px 45px rgba(0,0,0,.22);

    background:rgba(255,255,255,.05);

}

.application-card:hover::before{

    opacity:1;

}

.application-card:hover .application-icon .icon{

    transform:scale(1.08);

}

.application-icon .icon{

    transition:.45s cubic-bezier(.22,1,.36,1);

}

.application-card:hover h3{

    color:#d7a57d;

}



/*=====================================================
    CARD BORDER ANIMATION
=====================================================*/

.application-card::after{

    content:"";

    position:absolute;

    inset:12px;

    border:1px solid rgba(215,165,125,.25);

    border-radius:16px;

    opacity:0;

    transform:scale(.92);

    transition:.45s;

}

.application-card:hover::after{

    opacity:1;

    transform:scale(1);

}






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

@media(max-width:991px){

    .applications-section{

        padding:90px 0;

    }

    .applications-content{

        max-width:100%;

        text-align:center;

        margin-bottom:20px;

    }

    .applications-content .section-line{

        margin-left:auto;

        margin-right:auto;

    }

    .applications-bg-shape{

        width:320px;

        left:-110px;

        bottom:-80px;

    }

    .application-card{

        height:180px;

    }

    .application-icon{

        margin-bottom:18px;

    }

    .application-icon .icon{

        width:50px;

        height:50px;

    }

    .application-card h3{

        font-size:22px;

    }

}



@media(max-width:767px){

    .applications-section{

        padding:70px 0;

    }

    .applications-bg-shape{

        width:230px;

        left:-90px;

        bottom:-70px;

        opacity:.05;

    }

    .application-card{

        height:165px;

        border-radius:18px;

    }

    .application-icon{

        margin-bottom:16px;

    }

    .application-icon .icon{

        width:42px;

        height:42px;

    }

    .application-card h3{

        font-size:18px;

    }

    .applications-content p{

        margin-bottom:35px;

    }

}



@media(max-width:575px){

    .application-card{

        height:150px;

    }

}



/*=====================================================
    GALLERY SECTION
=====================================================*/

.gallery-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#fff;
}

.gallery-content{
    max-width:390px;
}

.gallery-content p{
    margin:35px 0 42px;
    line-height:2;
    color:var(--text);
}

.gallery-slider-wrap{
    position:relative;
    padding-bottom:80px;
}

.gallerySwiper{
    overflow:hidden;
}

.gallerySwiper .swiper-slide{
    height:auto;
}

.gallerySwiper .swiper-slide img{
    width:100%;
    aspect-ratio:0.72;
    object-fit:cover;
    display:block;
    border-radius:4px;
    transition:.5s ease;
}

.gallerySwiper .swiper-slide:hover img{
    transform:scale(1.04);
}

.gallery-navigation{
    position:absolute;
    right:0;
    bottom:0;
    display:flex;
    align-items:center;
    gap:14px;
}

.gallery-prev,
.gallery-next{
    width:56px;
    height:56px;
    border-radius:50%;
    border:1px solid #e6d8d3;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.35s;
    background:#fff;
}

.gallery-prev .icon,
.gallery-next .icon{
    width:18px;
    height:18px;
    fill:var(--primary);
}

.gallery-prev:hover,
.gallery-next:hover{
    background:var(--primary);
    border-color:var(--primary);
}

.gallery-prev:hover .icon,
.gallery-next:hover .icon{
    fill:#fff;
}

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

@media (max-width:1199px){

    .gallery-section{
        padding:100px 0;
    }

    .gallery-content{
        max-width:100%;
        margin-bottom:20px;
    }

}

@media (max-width:991px){

    .gallery-section{
        padding:80px 0;
    }

    .gallery-slider-wrap{
        padding-bottom:70px;
        margin-top:20px;
    }

    .gallery-navigation{
        right:50%;
        transform:translateX(50%);
    }

    .gallery-prev,
    .gallery-next{
        width:52px;
        height:52px;
    }

}

@media (max-width:767px){

    .gallery-section{
        padding:70px 0;
    }

    .gallery-content{
        text-align:center;
    }

    .gallery-content .section-line{
        margin-left:auto;
        margin-right:auto;
    }

    .gallery-content p{
        margin:25px 0 35px;
        line-height:1.9;
    }

    .gallery-content .btn-outline{
        width:100%;
    }

    .gallery-slider-wrap{
        padding-bottom:65px;
    }

    .gallery-prev,
    .gallery-next{
        width:48px;
        height:48px;
    }

    .gallery-prev .icon,
    .gallery-next .icon{
        width:16px;
        height:16px;
    }

}

@media (max-width:575px){

    .gallerySwiper .swiper-slide img{
        aspect-ratio:0.74;
    }

    .gallery-navigation{
        gap:10px;
    }

}

.catalogue-section
{
    background-color: #f9f4f5;
    padding: 100px 0;
}



/*=====================================================
    FOOTER
=====================================================*/

.site-footer{
    position:relative;
    background:#161618;
    color:#fff;
    overflow:hidden;
    padding:110px 0 45px;
}

.site-footer .container{
    position:relative;
    z-index:2;
}

/*=====================================
    Background Shapes
=====================================*/

.footer-shape{
    position:absolute;
    pointer-events:none;
    user-select:none;
}

.footer-shape-left{
    top:0;
    left:0;
    width:360px;
}

.footer-shape-right{
    right:0;
    bottom:0;
    width:360px;
}

/*=====================================
    Logo
=====================================*/

.footer-logo{
    text-align:center;
    margin-bottom:70px;
}

.footer-logo img{
    width:230px;
    margin:0 auto 30px;
}

.footer-logo p{
    max-width:620px;
    margin:auto;
    color:rgba(255,255,255,.82);
    line-height:1.9;
}

/*=====================================
    Navigation
=====================================*/

.footer-menu{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:0;
    margin:0;
    padding:0 0 65px;
    list-style:none;
}

.footer-menu li{
    position:relative;
}

.footer-menu li:not(:last-child)::after{
    content:"";
    width:1px;
    height:20px;
    background:rgba(109,20,42,.8);
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.footer-menu a{
    display:block;
    padding:0 28px;
    color:#fff;
    transition:.35s;
    font-weight:500;
}

.footer-menu a:hover{
    color:var(--secondary);
}

/*=====================================
    Contact Area
=====================================*/

.footer-contact-row{
    margin-bottom:70px;
}

.footer-contact{
    display:flex;
    align-items:flex-start;
    gap:18px;
    height:100%;
}

.footer-contact-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    border:1px solid rgba(109,20,42,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.35s;
}

.footer-contact-icon .icon{
    width:26px;
    height:26px;
    fill:var(--primary);
    transition:.35s;
}

.footer-contact:hover .footer-contact-icon{
    background:var(--primary);
}

.footer-contact:hover .footer-contact-icon .icon{
    fill:#fff;
}

.footer-contact p,
.footer-contact a,
.footer-contact span{
    display:block;
    color:rgba(255,255,255,.88);
    line-height:2;
    transition:.35s;
}

.footer-contact a:hover{
    color:var(--secondary);
}





/*=====================================
    Social
=====================================*/

.footer-social{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:55px;
}

.footer-social a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(109,20,42,.95);
    transition:.35s ease;
}

.footer-social .icon{
    width:22px;
    height:22px;
    fill:#fff;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

.footer-social a:hover .icon{
    fill:#161618;
}

/*=====================================
    Copyright
=====================================*/

.footer-bottom{
    text-align:center;
    color:rgba(255,255,255,.22);
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.06);
}

/*=====================================
    Responsive
=====================================*/

@media (max-width:991px){

    .site-footer{
        padding:90px 0 40px;
    }

    .footer-logo{
        margin-bottom:50px;
    }

    .footer-menu{
        padding-bottom:50px;
        row-gap:18px;
    }

    .footer-menu li:not(:last-child)::after{
        display:none;
    }

    .footer-contact-row{
        margin-bottom:50px;
    }

    .footer-contact{
        justify-content:center;
        text-align:left;
    }

    .footer-shape-left{
        width:220px;
    }

    .footer-shape-right{
        width:220px;
    }

}

@media (max-width:767px){

    .site-footer{
        padding:70px 0 35px;
        text-align:center;
    }

    .footer-logo img{
        width:180px;
        margin-bottom:25px;
    }

    .footer-logo{
        margin-bottom:40px;
    }

    .footer-menu{
        flex-direction:column;
        gap:16px;
        padding-bottom:40px;
    }

    .footer-menu a{
        padding:0;
    }

    .footer-contact{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .footer-contact-row{
        margin-bottom:40px;
    }

    .footer-social{
        margin-bottom:35px;
    }

    .footer-bottom{
        font-size:14px;
        line-height:1.8;
        padding-top:25px;
    }

    .footer-shape-left,
    .footer-shape-right{
        width:160px;
        opacity:.08;
    }

}


/*=====================================================
    INNER PAGE HEADER
=====================================================*/

.inner-banner{
    position: relative;
    overflow: hidden;
    padding: 180px 0 110px;
    background-color: #f9f4f5;
    background-image: url("../images/inner-banner.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.inner-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(249,244,245,.96) 0%,
        rgba(249,244,245,.90) 28%,
        rgba(249,244,245,.65) 52%,
        rgba(249,244,245,.30) 72%,
        rgba(249,244,245,.08) 100%
    );
    z-index: 1;
}

.inner-banner .container{
    position: relative;
    z-index: 2;
}

.inner-banner-content{
    max-width: 650px;
}

.inner-breadcrumb{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.inner-breadcrumb a,
.inner-breadcrumb span{
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.inner-breadcrumb a:hover{
    color: var(--primary);
}

.inner-banner-title{
    margin: 0;
    color: #111;
    font-size: clamp(42px,5vw,68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
}


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

@media (max-width:991px){

    .inner-banner{
        padding: 150px 0 85px;
        background-position: 72% center;
    }

    .inner-banner::before{
        background: linear-gradient(
            180deg,
            rgba(249,244,245,.96) 0%,
            rgba(249,244,245,.88) 55%,
            rgba(249,244,245,.45) 100%
        );
    }

    .inner-banner-content{
        max-width: 100%;
    }

    .inner-banner-title{
        font-size: 46px;
    }

}

@media (max-width:767px){

    .inner-banner{
        padding: 130px 0 60px;
        background-position: 75% center;
        background-size: cover;
    }

    .inner-breadcrumb{
        gap: 8px;
        margin-bottom: 14px;
    }

    .inner-breadcrumb a,
    .inner-breadcrumb span{
        font-size: 14px;
    }

    .inner-banner-title{
        font-size: 36px;
    }

}


/*====================================
WHY EXIRA
====================================*/

.why-exira{
    background:#fff;
}

.section-title span{
    color:#b28745;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.85rem;
    font-weight:600;
}

.section-title h2{
    margin-top:10px;
    font-size:2.5rem;
    color:#09213d;
    font-weight:700;
}

.why-list{
    border-top:1px solid #ddd;
}

.why-item{
    display:flex;
    gap:40px;
    padding:40px 0;
    border-bottom:1px solid #ddd;
    transition:.35s;
}

.why-item:hover{
    padding-left:25px;
    background:#fafafa;
}

.why-no{
    min-width:80px;
    font-size:3rem;
    font-weight:700;
    color:#d8d8d8;
    line-height:1;
}

.why-content h3{
    color:#09213d;
    font-size:1.45rem;
    margin-bottom:12px;
    font-weight:700;
}

.why-content p{
    margin:0;
    color:#666;
    line-height:1.9;
}

/* Mobile */

@media(max-width:768px){

    .why-item{
        flex-direction:column;
        gap:15px;
        padding:30px 0;
    }

    .why-item:hover{
        padding-left:0;
    }

    .why-no{
        font-size:2.2rem;
    }

    .section-title h2{
        font-size:2rem;
    }

}


/*=================================
ABOUT PAGE
=================================*/

.about-page{
    background:#fff;
}

/*=================================
UNIVERSAL SECTION HEADING
=================================*/

.section-heading{
    max-width:850px;
}

.section-heading-center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.section-heading-left{
    text-align:left;
}

.section-subtitle{
    display:inline-block;
    margin-bottom:15px;
    color:var(--secondary);
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title{
    margin:0 0 20px;
    color:#000;
    font-size: 37px;
    font-weight:700;
    line-height:1.2;
}

.section-description{
    color:#666;
    line-height:1.9;
    margin-bottom:0;
}

/*=================================
ABOUT CONTENT
=================================*/

.about-row{
    margin-top: 50px;
}

.about-image{
    overflow:hidden;
    border-radius:12px;
}

.about-image img{
    width:100%;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.small-image{
    max-width:420px;
    margin:auto;
}

.about-box{
    padding:10px 0;
}

.about-box h2{
    position:relative;
    padding-bottom:15px;
    margin-bottom:20px;
    color:#000;
    font-size:2rem;
    font-weight:700;
    line-height:1.25;
}

.about-box h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:var(--secondary);
}

.about-box p{
    color:#555;
    line-height:2;
    margin-bottom:20px;
}

/*=================================
FEATURE GRID
=================================*/

.about-features{
    display:grid;
    gap:20px;
}

.feature{
    padding:25px;
    background:#f7f7f7;
    border-left:4px solid var(--secondary);
    transition:.35s;
}

.feature:hover{
    background:var(--primary);
    border-color:var(--primary);
}

.feature span{
    display:block;
    font-weight:600;
    color:#222;
    transition:.35s;
}

.feature:hover span{
    color:#fff;
}

/*=================================
WHY EXIRA
=================================*/

.why-exira{
    background:#ebebeb;
}

.why-list{
    border-top:1px solid #ddd;
}

.why-item{
    display:flex;
    gap:40px;
    padding:40px 0;
    border-bottom:1px solid #ddd;
    transition:.35s;
}

.why-item:hover{
    padding-left:25px;
    background:#fafafa;
}

.why-no{
    min-width:80px;
    color:#d8d8d8;
    font-size:3rem;
    font-weight:700;
    line-height:1;
}

.why-content h3{
    margin-bottom:12px;
    color:var(--primary);
    font-size:1.45rem;
    font-weight:700;
}

.why-content p{
    margin:0;
    color:#666;
    line-height:1.9;
}

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

@media(max-width:991px){

    .section-title{
        font-size:2.4rem;
    }

    .about-box h2{
        font-size:1.7rem;
    }

    .small-image{
        max-width:100%;
    }

}

@media(max-width:767px){

    .section-title{
        font-size: 24px;
    }

    .section-subtitle{
        font-size: 15px;
        margin-bottom: 0;
    }
    .about-features{
        grid-template-columns:1fr;
        display: none;
    }

    .about-row{
        margin-top: 0px;
    }

    .why-item{
        flex-direction:column;
        gap:15px;
        padding:30px 0;
    }

    .why-item:hover{
        padding-left:0;
    }

    .why-no{
        font-size:2.2rem;
    }

    .why-content h3{
        font-size:1.3rem;
    }

}




/*=================================
PRODUCT COLLECTIONS
=================================*/

.products-page{
    padding:90px 0;
    background:#f9f4f5;
    position:relative;
    overflow:hidden;
}

.products-page::before{
    content:"";
    position:absolute;
    top:-120px;
    left:-120px;
    width:320px;
    height:320px;
    background:radial-gradient(circle, rgba(123,23,45,.08), transparent 70%);
    pointer-events:none;
}

.products-page::after{
    content:"";
    position:absolute;
    right:-120px;
    bottom:-120px;
    width:320px;
    height:320px;
    background:radial-gradient(circle, rgba(194,145,91,.12), transparent 70%);
    pointer-events:none;
}

.product-card{
    position:relative;
    display:block;
    text-decoration:none;
    color:inherit;
    overflow:hidden;
    transition:.45s;
}

.product-thumb{
    position:relative;
    overflow:hidden;
    border-radius:0;
    aspect-ratio:1/1;
    background:#ececec;
    box-shadow:
        0 12px 30px rgba(0,0,0,.08);
}

.product-thumb::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.25),
        rgba(0,0,0,0)
    );
    opacity:0;
    transition:.45s;
}

.product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.product-details{
    position:relative;
    background:#fff;
    margin:-45px 25px 0;
    padding:28px;
    z-index:2;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.45s;
}

.product-details::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:var(--primary);
    transform:scaleY(0);
    transform-origin:top;
    transition:.45s;
}

.product-label{
    display:inline-block;
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.75rem;
    font-weight:600;
    margin-bottom:10px;
}

.product-details h2{
    margin:0 0 18px;
    font-size:1.6rem;
    color:#111;
    font-weight:700;
    transition:.35s;
}

.product-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:600;
    transition:.35s;
}

.product-link i{
    transition:.35s;
}

/* Hover */

.product-card:hover{
    transform:translateY(-10px);
}

.product-card:hover .product-thumb img{
    transform:scale(1.08);
}

.product-card:hover .product-thumb::after{
    opacity:1;
}

.product-card:hover .product-details{
    box-shadow:
        0 22px 55px rgba(0,0,0,.16);
}

.product-card:hover .product-details::before{
    transform:scaleY(1);
}

.product-card:hover .product-details h2{
    color:var(--primary);
}

.product-card:hover .product-link i{
    transform:translateX(8px);
}

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

@media(max-width:991px){

    .products-page{
        padding:70px 0;
    }

    .product-details{
        margin:-35px 18px 0;
        padding:22px;
    }

    .product-details h2{
        font-size:1.35rem;
    }

}

@media(max-width:767px){

    .products-page{
        padding:60px 0;
    }

    .product-thumb{
        aspect-ratio:1/1;
    }

    .product-details{
        margin:-28px 14px 0;
        padding:18px;
    }

    .product-details h2{
        font-size:1.2rem;
    }

}


/*=================================
PRODUCT LISTING
=================================*/

.product-listing{
    background:#f9f4f5;
    position:relative;
    overflow:hidden;
}

.product-listing::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    top:-150px;
    left:-150px;
    background:radial-gradient(circle, rgba(122,23,45,.08), transparent 70%);
    pointer-events:none;
}

.product-listing::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    right:-150px;
    bottom:-150px;
    background:radial-gradient(circle, rgba(209,162,112,.10), transparent 70%);
    pointer-events:none;
}

/*=================================
PRODUCT CARD
=================================*/

.laminate-card{
    position:relative;
    transition:.4s;
}

.laminate-popup{
    display:block;
    text-decoration:none;
}

.laminate-image{
    position:relative;
    overflow:hidden;
    /* background:#fff; */
    border-radius: 8px;
    /* padding:14px; */
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.45s;
}

.laminate-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(122,23,45,.08),
        transparent 45%
    );
    opacity:0;
    transition:.4s;
    z-index:1;
}

.laminate-image img{
    width:100%;
    display:block;
    border-radius: 8px;
    transition:.55s;
}

/*=================================
PRODUCT INFO
=================================*/

.laminate-info{
    text-align:center;
    margin-top:22px;
}

.laminate-code{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
    border-radius:50px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.35s;
}

/*=================================
HOVER
=================================*/

.laminate-card:hover{
    transform:translateY(-5px);
}

.laminate-card:hover .laminate-image{
    box-shadow:0 25px 60px rgba(0,0,0,.16);
}

.laminate-card:hover .laminate-image::before{
    opacity:1;
}

.laminate-card:hover .laminate-image img{
    transform:scale(1.02);
}

.laminate-card:hover .laminate-code{
    background:var(--primary);
    color:#fff;
}

/*=================================
LIGHTBOX
=================================*/

.laminate-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9999;
}

.laminate-lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox-content{
    position:relative;
    max-width:85vw;
    max-height:85vh;
    padding:15px;
}

.lightbox-content img{
    display:block;
    max-width:100%;
    max-height:80vh;
    border-radius:12px;
    background:#fff;
    box-shadow:0 20px 70px rgba(0,0,0,.45);
    animation:lightboxZoom .35s ease;
}

@keyframes lightboxZoom{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/*=================================
BUTTONS
=================================*/

.lightbox-close,
.lightbox-prev,
.lightbox-next{
    position:absolute;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    font-size:20px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
    background:var(--primary);
    color:#fff;
    transform:scale(1.08);
}

.lightbox-close{
    top:35px;
    right:35px;
}

.lightbox-prev{
    left:35px;
    top:50%;
    transform:translateY(-50%);
}

.lightbox-next{
    right:35px;
    top:50%;
    transform:translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover{
    transform:translateY(-50%) scale(1.08);
}

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

@media(max-width:991px){

    .laminate-image{
        padding:12px;
        border-radius:16px;
    }

    .laminate-code{
        padding:9px 18px;
        font-size:.95rem;
    }

}

@media(max-width:767px){

    .product-listing{
        padding:60px 0;
    }

    .laminate-image{
        padding:10px;
        border-radius:14px;
    }

    .laminate-info{
        margin-top:18px;
    }

    .laminate-code{
        width:100%;
        border-radius:10px;
    }

    .lightbox-content{
        max-width:92vw;
        padding:10px;
    }

    .lightbox-content img{
        max-height:70vh;
    }

    .lightbox-close{
        width:46px;
        height:46px;
        top:20px;
        right:20px;
        font-size:18px;
    }

    .lightbox-prev,
    .lightbox-next{
        width:46px;
        height:46px;
        font-size:18px;
    }

    .lightbox-prev{
        left:15px;
    }

    .lightbox-next{
        right:15px;
    }

}


/*====================================
TECHNICAL SPECIFICATIONS
====================================*/

.specification-section{
    background:#ffffff;
}

.specification-table-wrapper{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border:1px solid #ece6e4;
}

.specification-table{
    margin:0;
    border-collapse:separate;
    border-spacing:0;
    width: 100%;
}

.specification-table thead th{
    background: var(--primary);
    color:#fff;
    text-align:center;
    vertical-align:middle;
    padding:22px 18px;
    font-size:1.08rem;
    font-weight:600;
    border:1px solid rgba(255,255,255,.2);
}

.specification-table tbody td{
    padding:18px;
    vertical-align:middle;
    border:1px solid #ebe4e1;
    color:#444;
    font-size:1rem;
    line-height:1.7;
}

.specification-table tbody tr:nth-child(odd){
    background:#f3dfd8;
}

.specification-table tbody tr:nth-child(even){
    background:#faf6f4;
}

.specification-table tbody tr{
    transition:.35s;
}

.specification-table tbody tr:hover{
    background:#f8ece8;
}

.specification-table td:first-child{
    width:70px;
    text-align:center;
    font-weight:700;
    color:var(--primary);
}

.specification-table td:nth-child(2){
    font-weight:500;
}

.specification-table td:nth-child(3),
.specification-table td:nth-child(4),
.specification-table td:nth-child(5){
    text-align:center;
}

.specification-table strong{
    display:block;
    color:var(--primary);
    font-weight:700;
    margin-bottom:8px;
}

.specification-table ul{
    margin:8px 0 0;
    padding-left:18px;
}

.specification-table li{
    margin-bottom:2px;
}

.specification-table i{
    color:#1c8b3a;
    font-size:1.45rem;
}

.specification-note{
    margin-top:25px;
    text-align:right;
}

.specification-note p{
    margin:0;
    color:#666;
    font-size:1rem;
    font-style:italic;
}

.specification-note strong{
    color:var(--primary);
}

/*====================================
SCROLLBAR
====================================*/

.specification-table-wrapper::-webkit-scrollbar{
    height:8px;
}

.specification-table-wrapper::-webkit-scrollbar-track{
    background:#ececec;
}

.specification-table-wrapper::-webkit-scrollbar-thumb{
    background:var(--secondary);
    border-radius:50px;
}

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

@media (max-width:991px){

    .specification-table{
        min-width:1000px;
    }

}

@media (max-width:767px){

    .specification-section{
        padding:60px 0;
    }

    .specification-table thead th{
        font-size:.95rem;
        padding:16px 12px;
    }

    .specification-table tbody td{
        padding:14px 12px;
        font-size:.92rem;
    }

    .specification-table i{
        font-size:1.2rem;
    }

    .specification-note{
        text-align:left;
    }

    .specification-note p{
        font-size:.92rem;
        line-height:1.7;
    }

}

/*====================================
PRODUCT WARRANTY
====================================*/

.warranty-section{
    background:#fff;
}

.warranty-card{
    background:#faf7f5;
    border-left:5px solid var(--secondary);
    padding:40px;
    border-radius:12px;
    margin-bottom:60px;
}

.warranty-card h2{
    color:var(--secondary);
    font-size:1.8rem;
    font-weight:700;
    margin-bottom:30px;
}

.product-info-table{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.info-row{
    display:grid;
    grid-template-columns:240px 1fr;
    gap:30px;
    align-items:center;
    padding-bottom:15px;
    border-bottom:1px solid #e8e2df;
}

.info-row:last-child{
    border:none;
    padding-bottom:0;
}

.info-row span{
    font-weight:600;
    color:#666;
}

.info-row strong{
    font-weight:600;
    color:var(--primary);
}

/*====================================
CARE GRID
====================================*/

.care-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.care-card{
    background:#fff;
    border:1px solid #ece6e4;
    border-radius:12px;
    padding:35px;
    transition:.35s;
}

.care-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.care-card h3{
    color:var(--secondary);
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
}

.care-card p{
    margin:0;
    color:#555;
    line-height:1.9;
}

/*====================================
LIMITED WARRANTY
====================================*/

.limited-warranty{
    margin-top:60px;
    background:#f8f8f8;
    padding:40px;
    border-radius:12px;
}

.limited-warranty h2{
    color:var(--secondary);
    font-size:1.8rem;
    margin-bottom:25px;
    font-weight:700;
}

.limited-warranty ul{
    margin:0;
    padding-left:22px;
}

.limited-warranty li{
    margin-bottom:16px;
    color:#555;
    line-height:1.8;
}

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

@media(max-width:991px){

    .care-grid{
        grid-template-columns:1fr;
    }

    .info-row{
        grid-template-columns:1fr;
        gap:8px;
    }

}

@media(max-width:767px){

    .warranty-card,
    .limited-warranty,
    .care-card{
        padding:25px;
    }

    .warranty-card h2,
    .limited-warranty h2{
        font-size:1.5rem;
    }

    .care-card h3{
        font-size:1.15rem;
    }

}

/*====================================
INSTALLATION GUIDE
====================================*/

.installation-guide{
    background:#fff;
}

.guide-card{
    height:100%;
    background:#fff;
    border:1px solid #ece6e4;
    border-radius:14px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.guide-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

.guide-image img{
    width:100%;
    display:block;
}

.guide-content{
    padding:28px;
}

.guide-content h3{
    color:var(--primary);
    font-size:1.45rem;
    font-weight:700;
    margin-bottom:12px;
}

.guide-content p{
    color:#666;
    margin:0;
    line-height:1.8;
}

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

@media(max-width:991px){

    .guide-content{
        padding:22px;
    }

}

@media(max-width:767px){

    .guide-content h3{
        font-size:1.2rem;
    }

    .guide-content{
        padding:20px;
    }

}

/*====================================
APPLICATIONS PAGE
====================================*/

.applications-page{
    background:#fff;
}

.application-page-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #ece7e5;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.application-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.application-page-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.application-content{
    padding:30px;
}

.application-content h2{
    color:var(--primary);
    font-size:1.7rem;
    margin-bottom:15px;
    font-weight:700;
}

.application-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.application-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.application-tags span{
    background:#f5efec;
    color:var(--secondary);
    padding:8px 16px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
}

.application-page-card:hover .application-tags span{
    background:var(--secondary);
    color:#fff;
}

@media(max-width:991px){

    .application-page-card img{
        height:220px;
    }

}

@media(max-width:767px){

    .application-content{
        padding:22px;
    }

    .application-content h2{
        font-size:1.45rem;
    }

}


/*====================================
CONTACT PAGE
====================================*/

.contact-page{
    background:#fff;
}

/* Layout */

.contact-layout{
    display:grid;
    /* grid-template-columns:430px 1fr; */
    gap:70px;
    align-items:center;
}

/* Left */

.contact-info{
    padding-right:20px;
}

.contact-item{
    display:flex;
    gap:22px;
    align-items:flex-start;
}

.contact-divider{
    height:1px;
    background:#e8e8e8;
    margin:35px 0;
}

.contact-icon{
    width:70px;
    height:70px;
    background:#f8f4f2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-icon .icon{
    width:28px;
    height:28px;
    fill:var(--secondary);
}

.contact-item span{
    display:block;
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.82rem;
    margin-bottom:8px;
    font-weight:600;
}

.contact-item h2{
    color:var(--primary);
    font-size:1.8rem;
    margin-bottom:15px;
}

.contact-item h3{
    font-size:1.4rem;
    margin-bottom:8px;
}

.contact-item h3 a{
    color:var(--primary);
    text-decoration:none;
}

.contact-item p{
    margin:0;
    color:#666;
    line-height:1.9;
}

/* Right */

.contact-image{
    overflow:hidden;
    border-radius:20px;
}

.contact-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    transition:.5s;
}

.contact-image:hover img{
    transform:scale(1.04);
}

/* CTA */

.contact-cta{
    margin-top:80px;
    padding:45px 50px;
    background:#faf7f5;
    border-radius:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.contact-cta span{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.82rem;
    font-weight:600;
}

.contact-cta h2{
    margin:12px 0 18px;
    color:var(--primary);
    font-size:2rem;
}

.contact-cta p{
    margin:0;
    color:#666;
    line-height:1.9;
    max-width:700px;
}

/* Button */

.theme-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 34px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.35s;
    white-space:nowrap;
}

.theme-btn:hover{
    background:var(--primary);
    color:#fff;
}

.theme-btn .icon{
    width:18px;
    height:18px;
    fill:#fff;
}

/* Responsive */

@media(max-width:991px){

    .contact-layout{
        grid-template-columns:1fr;
        gap:45px;
    }

    .contact-image{
        order:-1;
    }

    .contact-image img{
        height:450px;
    }

    .contact-cta{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:767px){

    .contact-item{
        gap:16px;
    }

    .contact-item h2{
        font-size:1.5rem;
    }

    .contact-item h3{
        font-size:1.2rem;
    }

    .contact-image img{
        height:320px;
    }

    .contact-cta{
        padding:30px 25px;
    }

    .contact-cta h2{
        font-size:1.6rem;
    }

}




/*====================================
FLOATING WHATSAPP
====================================*/

.floating-whatsapp{
    position:fixed;
    right:30px;
    bottom:30px;
    width: 50px;
    height: 50px;
    z-index:9999;
    text-decoration:none;
}

.whatsapp-icon{
    width: 50px;
    height: 50px;
    border-radius:50%;
    background:linear-gradient(135deg,#25D366,#128C7E);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:5;
    box-shadow:
        0 12px 30px rgba(37,211,102,.45),
        0 5px 10px rgba(0,0,0,.15);
    transition:.35s;
}

.whatsapp-icon .icon{
    width: 25px;
    height: 25px;
    fill:#fff;
}

.floating-whatsapp:hover .whatsapp-icon{
    transform:translateY(-6px) scale(1.08) rotate(-8deg);
}

.whatsapp-tooltip{
    position:absolute;
    right:84px;
    top:50%;
    transform:translateY(-50%);
    background:#222;
    color:#fff;
    padding:11px 18px;
    border-radius:30px;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.3px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.whatsapp-tooltip::after{
    content:"";
    position:absolute;
    right:-6px;
    top:50%;
    width:12px;
    height:12px;
    background:#222;
    transform:translateY(-50%) rotate(45deg);
}

.floating-whatsapp:hover .whatsapp-tooltip{
    opacity:1;
    visibility:visible;
    right:90px;
}

/* Ripple */

.whatsapp-ripple{
    position:absolute;
    inset:0;
    border-radius:50%;
    background:rgba(37,211,102,.25);
    animation:whatsappPulse 2.4s infinite;
}

.ripple-2{
    animation-delay:1.2s;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(.9);
        opacity:.7;
    }

    70%{
        transform:scale(1.8);
        opacity:0;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}

/* Floating Animation */

.whatsapp-icon{
    animation:whatsappFloat 3.5s ease-in-out infinite;
}

@keyframes whatsappFloat{

    0%{
        transform:translateY(0);
    }

    25%{
        transform:translateY(-5px);
    }

    50%{
        transform:translateY(0);
    }

    75%{
        transform:translateY(-3px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Glow */

.whatsapp-icon::before{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.45);
    animation:rotateBorder 5s linear infinite;
}

@keyframes rotateBorder{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/* Mobile */

@media(max-width:768px){

    .floating-whatsapp{
        right: 18px;
        bottom:18px;
    }

    .whatsapp-icon{
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon .icon{
        width: 25px;
        height: 25px;
    }

    .whatsapp-tooltip{
        display:none;
    }

}

/* Dealer Enquiry Start */

.dealer-enquiry-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: #f7f1ee;
    position: relative;
    overflow: hidden;
}

.dealer-enquiry-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    top: -250px;
    right: -180px;
}

.dealer-enquiry-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    bottom: -220px;
    left: -180px;
}

.dealer-enquiry-wrap {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dealer-enquiry-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.dealer-enquiry-icon .icon {
    width: 38px;
    height: 38px;
    fill: currentColor;
}

.dealer-enquiry-label {
    display: block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.dealer-enquiry-wrap h1 {
    margin: 0 0 25px;
    color: #282525;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.dealer-enquiry-wrap p {
    max-width: 650px;
    margin: 0 auto 38px;
    color: #69615e;
    font-size: 17px;
    line-height: 1.8;
}

.dealer-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    padding: 0 30px;
    color: #ffffff;
    background: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--primary);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.dealer-enquiry-btn .icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.dealer-enquiry-btn .dealer-arrow {
    width: 17px;
    height: 17px;
    transition: transform 0.35s ease;
}

.dealer-enquiry-btn:hover {
    color: #ffffff;
    background: #282525;
    border-color: #282525;
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

.dealer-enquiry-btn:hover .dealer-arrow {
    transform: translateX(5px);
}

.dealer-enquiry-note {
    display: block;
    margin-top: 20px;
    color: #8a817d;
    font-size: 13px;
    letter-spacing: 0.3px;
}


/* Dealer Enquiry Responsive Start */

@media (max-width: 767px) {

    .dealer-enquiry-section {
        min-height: 80vh;
        padding: 70px 20px;
    }

    .dealer-enquiry-wrap {
        padding: 40px 15px;
    }

    .dealer-enquiry-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 25px;
    }

    .dealer-enquiry-icon .icon {
        width: 32px;
        height: 32px;
    }

    .dealer-enquiry-label {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .dealer-enquiry-wrap h1 {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }

    .dealer-enquiry-wrap p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .dealer-enquiry-btn {
        width: 100%;
        min-height: 58px;
        padding: 0 18px;
        font-size: 14px;
    }

    .dealer-enquiry-note {
        font-size: 12px;
    }

}

/* Dealer Enquiry Responsive End */

/* Dealer Enquiry End */