* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cormorant Garamond", serif;
}

body {
    background: #fff;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #947b59;
    color: #fff;
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons .fa-facebook-f {
    color: #1877F2;
}

.social-icons .fa-x-twitter {
    color: #000;
}

.social-icons .fa-youtube {
    color: red;
}

@media (max-width:768px) {
    .top-bar {
        padding: 12px 15px;
        align-items: flex-start;
    }

    .contact-info {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
    }

    .social-icons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
    }
}

/*======================================
        HEADER
======================================*/

.header {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    z-index: 999;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-left>a,
.nav-right>a,
.mega-dropdown>a {

    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    display: flex;
    align-items: center;
    gap: 8px;

}

.nav-left>a:hover,
.nav-right>a:hover,
.mega-dropdown>a:hover {

    color: #c79b53;

}

.nav-left>.active {

    color: #c79b53;

}

.logo img {

    width: auto;
    height: 75px;

}

.quote-btn {

    background: #c79b53;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #e6d6b8;
    box-shadow: 0 10px 25px rgba(199, 155, 83, .25);

}

.quote-btn:hover {

    transform: translateY(-2px);

}


/*======================================
        MEGA DROPDOWN
======================================*/

.mega-dropdown {

    position: relative;

}

.mega-dropdown>a i {

    font-size: 12px;
    transition: .35s;

}

.mega-dropdown:hover>a i {

    transform: rotate(180deg);

}

.mega-menu{
    position: absolute;
    top: calc(100% + 20px);

    left: 50%;
    transform: translateX(-50%);

    width: min(1080px, calc(100vw - 40px));
    max-width: 1080px;

    background: #fff;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0,0,0,.12);

    display: flex;
    gap: 30px;
    padding: 24px;

    opacity: 0;
    visibility: hidden;
    transition: .35s;

    z-index: 9999;

    box-sizing: border-box;
}

.mega-dropdown:hover .mega-menu{
    opacity: 1;
    visibility: visible;
    top: calc(100% + 12px);
}


/*======================================
        LEFT IMAGE
======================================*/

.mega-image {

    width: 38%;

    overflow: hidden;

    border-radius: 18px;

    flex-shrink: 0;

}

.mega-image img {

    width: 100%;
    height: 100%;
    min-height: 365px;
    object-fit: cover;
    display: block;
    transition: .5s;

}

.mega-image:hover img {

    transform: scale(1.05);

}


/*======================================
        RIGHT LINKS
======================================*/

.mega-links {

    width: 62%;

    display: flex;

    flex-direction: column;

    border: 1px solid #ededed;

    border-radius: 18px;

    overflow: hidden;

}

.mega-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

}

.mega-row:not(:last-child) {

    border-bottom: 1px solid #ededed;

}

.mega-row a {

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-decoration: none;

    color: #222;

    font-size: 17px;

    font-weight: 500;

    padding: 22px 26px;

    transition: .35s;

}

.mega-row a:first-child {

    border-right: 1px solid #ededed;

}

.mega-row a::after {

    content: "\2192";

    opacity: 0;

    transform: translateX(-8px);

    transition: .35s;

    color: #c79b53;

    font-size: 18px;

}

.mega-row a:hover {

    background: #faf8f4;

    color: #c79b53;

    padding-left: 34px;

}

.mega-row a:hover::after {

    opacity: 1;

    transform: translateX(0);

}


/*======================================
        HOVER GAP FIX
======================================*/

.mega-dropdown::before {

    content: "";

    position: absolute;

    left: 0;

    top: 100%;

    width: 100%;

    height: 28px;

}


/*======================================
        HAMBURGER
======================================*/

.menu-toggle {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

    font-size: 32px;

    color: #222;

}

/*======================================
        TABLET RESPONSIVE
======================================*/

@media (max-width:1200px) {

    .header {
        padding: 18px 4%;
    }

    .mega-menu {

        width: 950px;

        left: 50%;

        transform: translateX(-45%);

    }

    .mega-image {
        width: 36%;
    }

    .mega-links {
        width: 64%;
    }

    .mega-row a {

        font-size: 15px;

        padding: 20px;

    }

}


/*======================================
        MOBILE HEADER
======================================*/

@media (max-width:991px) {

    .nav-left,
    .nav-right {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

    .header {

        padding: 14px 20px;

    }

    .logo img {

        height: 55px;

    }

}


/*======================================
        MOBILE MENU
======================================*/

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 320px;

    height: 100vh;

    background: #fff;

    overflow-y: auto;

    box-shadow: -10px 0 40px rgba(0, 0, 0, .12);

    transition: .4s;

    z-index: 99999;


}

.mobile-menu.active {

    right: 0;

}

.mobile-menu a {

    display: block;

    text-decoration: none;

    color: #444;

    padding: 16px 25px;

    border-bottom: 1px solid #efefef;

    font-size: 15px;

    font-weight: 500;

    transition: .3s;

}

.mobile-menu a:hover {

    color: #c79b53;

    background: #faf8f4;

}


/*======================================
        MOBILE SERVICES
======================================*/

.mobile-dropdown {

    border-bottom: 1px solid #efefef;

}

.mobile-dropdown-btn {

    width: 100%;

    background: #fff;

    border: none;

    padding: 18px 25px;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 15px;

    font-weight: 600;

    color: #444;

}

.mobile-dropdown-btn i {

    transition: .35s;

}

.mobile-dropdown.active .mobile-dropdown-btn i {

    transform: rotate(180deg);

}

.mobile-dropdown-content {

    display: none;

    background: #fafafa;

}

.mobile-dropdown.active .mobile-dropdown-content {

    display: block;

}

.mobile-dropdown-content a {

    padding: 14px 40px;

    border-bottom: 1px solid #eee;

    font-size: 14px;

}


/*======================================
        MOBILE QUOTE BUTTON
======================================*/

.mobile-quote-btn {

    margin: 20px;

    padding: 15px;

    background: #c79b53;

    color: #fff !important;

    display: flex !important;

    justify-content: center;

    align-items: center;

    gap: 10px;

    border-radius: 40px;

    border: none;

}


/*======================================
        MOBILE MEGA MENU
======================================*/

@media(max-width:991px) {

    .mega-menu {

        display: none;

    }

}


/*======================================
        SMALL MOBILE
======================================*/

@media(max-width:480px) {

    .mobile-menu {

        width: 100%;

    }

    .header {

        padding: 12px 15px;

    }

    .logo img {

        height: 48px;

    }

    .menu-toggle {

        font-size: 28px;

    }

    .mobile-dropdown-content a {

        padding: 13px 30px;

    }

}

.mobile-menu-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 22px;

    border-bottom: 1px solid #ececec;

    position: sticky;
    top: 0;

    background: #fff;

    z-index: 10;

}

.mobile-logo img {

    height: 48px;
    width: auto;

}

.mobile-close {

    width: 42px;
    height: 42px;

    border: none;

    background: #f5f5f5;

    border-radius: 50%;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    color: #333;

    transition: .3s;

}

.mobile-close:hover {

    background: #c79b53;

    color: #fff;

}

/*Hero Section*/
.hero-slider {
    position: relative;
    width: 100%;
    height: 77vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 650px;
}

.content span {
    color: #c8a15f;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content h1 {
    font-size: 70px;
    line-height: 1.1;
    margin: 20px 0;
}

.content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    background: #c8a15f;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: .5;
    cursor: pointer;
}

.dot.active {
    background: #c8a15f;
    opacity: 1;
}

/* Mobile */

@media(max-width:768px) {

    .hero-slider {
        height: 75vh;
    }

    .content {
        left: 20px;
        right: 20px;
        max-width: none;
        text-align: center;
    }

    .content h1 {
        font-size: 38px;
    }

    .content p {
        font-size: 15px;
    }
}

/*Why choose us*/
.usp-section {
    padding: 40px 7%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #f8f6f2;
}

.usp-item {
    padding: 30px;
    border-bottom: 3px solid #c8a15f;
    transition: .4s;
}

.usp-item:hover {
    transform: translateY(-8px);
}

.usp-number {
    font-size: 60px;
    font-weight: 700;
    color: #c8a15f;
    opacity: .25;
    display: block;
}

.usp-item h3 {
    margin: 15px 0;
    font-size: 24px;
}

.usp-item p {
    color: #666;
    line-height: 1.7;
}

/* Tablet */

@media (max-width: 992px) {

    .usp-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 70px 5%;
    }

    .usp-number {
        font-size: 50px;
    }

    .usp-item h3 {
        font-size: 22px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .usp-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 50px 20px;
    }

    .usp-item {
        padding: 25px;
        text-align: center;
        border-bottom: none;
        border-left: 4px solid #c8a15f;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    }

    .usp-number {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .usp-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .usp-item p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .usp-section {
        padding: 40px 15px;
    }

    .usp-item {
        padding: 20px;
    }

    .usp-number {
        font-size: 36px;
    }

    .usp-item h3 {
        font-size: 18px;
    }

    .usp-item p {
        font-size: 14px;
    }
}

/* ===================================
   OUR PRODUCTS
=================================== */

.products-section {
    padding: 80px 6%;
    background: #efe7dd;
}

.collection-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 5px;
    color: #c8a15f;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.collection-heading h2 {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #1d1d1d;
}

.heading-line {
    width: 80px;
    height: 2px;
    background: #c8a15f;
    margin: 22px auto;
}

.collection-heading p {
    max-width: 550px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* ===================================
   GRID
=================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===================================
   CARD
=================================== */

.product-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: .4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.product-card:hover img {
    transform: scale(1.12);
}

/* ===================================
   CONTENT
=================================== */

.product-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .20) 25%,
            rgba(0, 0, 0, 0) 55%);
    transition: .4s ease;
}

.product-card:hover .product-content {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .95),
            rgba(0, 0, 0, .25));
}

.product-content span {
    color: #c8a15f;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.product-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    transition: .4s ease;
}

.product-card:hover .product-content h3 {
    transform: translateY(-8px);
}

/* ===================================
   GOLD LINE
=================================== */

.hover-line {
    width: 40px;
    height: 2px;
    background: #c8a15f;
    margin-top: 12px;
    transition: .5s ease;
}

.product-card:hover .hover-line {
    width: 140px;
}

/* ===================================
   DETAIL TEXT
=================================== */

.detail-text {
    position: absolute;
    top: 25px;
    right: 15px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    color: #fff;
    font-size: 12px;
    letter-spacing: 4px;

    opacity: 0;
    transition: .4s ease;
}

.product-card:hover .detail-text {
    opacity: 1;
}

/* ===================================
   GOLD BORDER
=================================== */

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: .4s ease;
    border-radius: 12px;
}

.product-card:hover::after {
    border-color: #c8a15f;
}

/* ===================================
   TABLET
=================================== */

@media (max-width:992px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-heading h2 {
        font-size: 36px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width:768px) {

    .products-section {
        padding: 60px 15px;
    }

    .collection-heading {
        margin-bottom: 35px;
    }

    .collection-heading h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .collection-heading p {
        font-size: 14px;
        padding: 0 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        height: 220px;
    }

    .product-content {
        padding: 14px;
    }

    .product-content span {
        font-size: 15px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .hover-line {
        width: 30px;
    }

    .product-card:hover .hover-line {
        width: 80px;
    }

    .detail-text {
        display: none;
    }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width:480px) {

    .collection-heading h2 {
        font-size: 28px;
    }

    .products-grid {
        gap: 10px;
    }

    .product-card {
        height: 180px;
    }

    .product-content h3 {
        font-size: 20px;
    }
}

/*Collection*/
.collection-section {
    padding: 40px 5%;
    background: #f8f4ef;
}

.container {
    max-width: 1400px;
    margin: auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.featured-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    transition: .8s;
}

.featured-image:hover img {
    transform: scale(1.08);
}

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, .9);
    padding: 14px 22px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.featured-content .sub-title {
    color: #947b59;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #222;
}

.desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stats h3 {
    font-size: 42px;
    color: #947b59;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: #947b59;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    transition: .4s;
}

.main-btn:hover {
    transform: translateY(-5px);
}

.category-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 320px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .15));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
    transition: .4s;
}

.overlay h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.overlay span {
    opacity: 0;
    transform: translateY(20px);
    transition: .4s;
}

.category-card:hover span {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover .overlay {
    background: linear-gradient(to top,
            rgba(148, 123, 89, .95),
            rgba(148, 123, 89, .2));
}

@media(max-width:991px) {

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-content h2 {
        font-size: 42px;
    }

    .featured-image img {
        height: 450px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {

    .category-grid {
        grid-template-columns: 1fr;
    }

    .featured-content h2 {
        font-size: 34px;
    }

    .stats {
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .stats {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin: 25px 0;
        flex-wrap: wrap;
    }

    .stats div {
        text-align: center;
    }

    .stats h3 {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .main-btn {
        display: inline-flex;
        margin: 20px auto 0;
        justify-content: center;
    }

}

/*Appointment */
.luxury-showcase {
    position: relative;
    min-height: 70vh;
    padding: 80px 6% 180px;

    display: flex;
    align-items: center;

    background: url("/img/hall-design.jpg") center center/cover no-repeat;
}

.luxury-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.glass-card {
    position: relative;
    z-index: 2;

    width: 500px;

    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(198, 164, 122, .35);

    border-radius: 35px;

    padding: 60px;
}

.tag {
    color: #c6a47a;
    font-size: 15px;
    letter-spacing: 3px;
}

.line {
    width: 70px;
    height: 2px;
    background: #c6a47a;
    margin: 25px 0;
}

.glass-card h2 {
    font-size: 50px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
}

.glass-card h2 span {
    display: block;
    color: #c6a47a;
    font-style: italic;
    margin-top: 10px;
}

.glass-card p {
    color: #e5e5e5;
    font-size: 22px;
    line-height: 1.8;
    margin-top: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-gold {
    background: #c6a47a;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
}

.btn-gold:hover,
.btn-outline:hover {
    transform: translateY(-5px);
    transition: .4s;
}

.stats-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 1300px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 25px;

    z-index: 2;
    overflow: hidden;
}

.stat {
    padding: 35px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat:last-child {
    border-right: none;
}

.stat h3 {
    color: #c6a47a;
    font-size: 40px;
    margin-bottom: 10px;
}

.stat span {
    color: #fff;
}

.glass-card {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s ease;
}

.glass-card.show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:768px) {

    .glass-card {
        width: 100%;
        padding: 35px 25px;
    }

    .glass-card h2 {
        font-size: 48px;
    }

    .glass-card p {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .stats-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;

        margin-top: 40px;

        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:576px) {

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .glass-card h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .luxury-showcase {
        padding: 40px 15px;
        min-height: auto;
        display: block;
    }

    .glass-card {
        width: 100%;
        padding: 30px 20px;
        border-radius: 25px;
    }

    .glass-card h2 {
        font-size: 42px;
        line-height: 1.1;
    }

    .glass-card p {
        font-size: 16px;
        line-height: 1.8;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stats-bar {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 25px;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;

        background: transparent;
        border: none;
        backdrop-filter: none;
    }

    .stat {
        border: none;
        border-radius: 20px;
        background: rgba(0, 0, 0, .45);
        backdrop-filter: blur(10px);
        padding: 20px;
    }

    .stat h3 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {

    .glass-card h2 {
        font-size: 34px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 18px;
    }
}

/*videos */
.latest-updates {
    padding: 40px 5%;
    background: #f8f5f1;
}

.updates-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-tag {
    display: inline-block;
    color: #b89362;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.updates-header h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 20px;
}

.updates-header h2 span {
    color: #b89362;
}

.updates-header p {
    color: #777;
    font-size: 20px;
    line-height: 1.8;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.update-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 520px;
    text-decoration: none;
}

.update-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.update-card:hover video {
    transform: scale(1.08);
}

.update-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .7),
            transparent 55%);
}

.card-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    right: 25px;
    z-index: 2;
}

.card-content h3 {
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
}

@media(max-width:768px) {

    .updates-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 10px;
    }

    .updates-grid::-webkit-scrollbar {
        display: none;
    }

    .update-card {
        flex: 0 0 100%;
        width: 100%;
        height: 500px;

        scroll-snap-align: start;

        box-sizing: border-box;
    }

    .updates-header h2 {
        font-size: 30px;
    }

    .updates-header p {
        font-size: 16px;
    }
}

/*Blog Section*/
.insights-section {
    padding: 40px 5%;
    background: #f8f5f0;
}

.insights-wrapper {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 40px;
    align-items: start;
}

.featured-story {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 25px;
    text-decoration: none;
}

.featured-story img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .6s;
}

.featured-story:hover img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            transparent);

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.story-overlay span {
    color: #d6b07b;
}

.story-overlay h3 {
    color: #fff;
    font-size: 32px;
    margin: 12px 0;
    max-width: 600px;
}

.story-overlay p {
    color: #fff;
}

.story-list {
    border-top: 1px solid #ddd;
}

.story-item {
    display: block;
    padding: 28px 0;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
}

.story-item span {
    color: #b89362;
    font-size: 13px;
}

.story-item h4 {
    margin-top: 10px;
    color: #111;
    font-size: 22px;
    line-height: 1.5;
}

@media(max-width:768px) {

    .insights-wrapper {
        grid-template-columns: 1fr;
    }

    .insights-header h2 {
        font-size: 42px;
    }

    .featured-story img {
        height: 280px;
    }

    .story-overlay h3 {
        font-size: 24px;
    }

    .story-item h4 {
        font-size: 18px;
    }
}

/*FAQ Section*/
.luxury-faq {
    padding: 40px 5%;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-tag {
    display: inline-block;
    color: #b89362;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.faq-header p {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.faq-list {
    border-top: 1px solid #d8d2ca;
}

.faq-item {
    border-bottom: 1px solid #d8d2ca;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.faq-number {
    color: #b89362;
    font-size: 20px;
    min-width: 40px;
}

.faq-question h3 {
    font-size: 22px;
    font-weight: 500;
    color: #111;
    margin: 0;
}

.faq-icon {
    font-size: 32px;
    color: #b89362;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.faq-answer p {
    padding: 0 0 35px 70px;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Hover */

.faq-question:hover h3 {
    color: #b89362;
    transition: .3s;
}

/* Mobile */

@media(max-width:768px) {

    .luxury-faq {
        padding: 40px 20px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-left {
        gap: 15px;
        align-items: flex-start;
    }

    .faq-number {
        margin-top: 4px;
    }

    .faq-question h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .faq-icon {
        font-size: 24px;
        margin-left: 15px;
    }

    .faq-answer p {
        padding: 0 0 25px 30px;
        font-size: 15px;
    }
}

/*Footer*/
.luxury-footer {
    background: #1f1c19;
    color: #f4efe8;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 120px;
    padding: 40px 5% 40px;
}

.footer-top {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-tag {
    letter-spacing: 4px;
    font-size: 13px;
}

.footer-top h2 {
    font-size: 30px;
    line-height: 1;
    margin: 25px 0;
}


.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    background: #c8a36a;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.footer-btn:hover {
    transform: translateY(-4px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
}

.footer-logo {
    width: 250px;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    text-decoration: none;
    transition: .3s;
}

.footer-col ul a:hover {
    color: #c8a36a;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .15);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;
    text-decoration: none;

    transition: .3s;
}

.footer-social a:hover {
    background: #c8a36a;
    border-color: #c8a36a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);

    padding-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
}



.footer-col p,
.footer-col ul a,
.footer-bottom p,
.footer-links a {
    color: #cfc6bc;
}

.footer-col h4,
.footer-tag,
.footer-top h2 span {
    color: #c8a36a;
}

@media (max-width: 768px) {

    .luxury-footer {
        padding: 70px 20px 30px;
    }

    .footer-top {
        padding-bottom: 50px;
        text-align: center;
    }

    .footer-top h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .footer-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-logo {
        width: 200px;
        margin: 0 auto 20px;
        display: block;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .footer-col ul {
        margin: 0;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width:480px) {

    .footer-top h2 {
        font-size: 30px;
    }

    .footer-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .footer-col p,
    .footer-col ul a {
        font-size: 14px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

}

/*Review*/
.testimonial-section {
    padding: 40px 5%;
    background: #f8f5f0;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-heading span {
    color: #b89362;
    letter-spacing: 4px;
    font-size: 13px;
}

.testimonial-heading h2 {
    font-size: 40px;
    margin: 15px 0;
    line-height: 1.1;
}

.testimonial-heading p {
    color: #777;
    font-size: 20px;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-btn {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.testimonial-content {
    flex: 1;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.quote-mark {
    font-size: 60px;
    color: #b89362;
    line-height: 1;
}

.review-text {
    font-size: 20px;
    line-height: 1.7;
    margin: 20px 0 20px;
    color: #1f1f1f;
}

.review-author h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.review-author span {
    color: #b89362;
    font-size: 14px;
}

.review-stars {
    margin-top: 25px;
    color: #b89362;
    font-size: 22px;
    letter-spacing: 4px;
}

.slider-progress {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.progress-line {
    width: 260px;
    height: 3px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: #b89362;
}

@media(max-width:768px) {

    .testimonial-section {
        padding: 70px 20px;
    }

    .testimonial-heading h2 {
        font-size: 28px;
    }

    .testimonial-heading p {
        font-size: 16px;
    }

    .testimonial-slider {
        flex-direction: column;
        gap: 25px;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-image img {
        height: 260px;
    }

    .review-text {
        font-size: 20px;
        line-height: 1.7;
    }

    .review-author h3 {
        font-size: 24px;
    }

    .quote-mark {
        font-size: 60px;
    }

    .nav-btn {
        display: none;
    }

    .progress-line {
        width: 120px;
    }

    .testimonial-content.active {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.testimonial-wrapper {
    flex: 1;
    position: relative;
}

.testimonial-content {
    display: none;
}

.testimonial-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {

    .testimonial-content.active {
        gap: 40px;
    }

    .testimonial-image img {
        height: 320px;
    }

    .review-text {
        font-size: 18px;
    }

}

@media (max-width: 768px) {

    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-heading span {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .testimonial-heading h2 {
        font-size: 34px;
    }

    .testimonial-heading p {
        font-size: 16px;
    }

    .testimonial-slider {
        gap: 15px;
    }

    .testimonial-content.active {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-image {
        order: 1;
    }

    .testimonial-info {
        order: 2;
        text-align: center;
    }

    .testimonial-image img {
        width: 100%;
        height: 260px;
        border-radius: 18px;
    }

    .quote-mark {
        font-size: 50px;
    }

    .review-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .review-author h3 {
        font-size: 20px;
    }

    .review-stars {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

}

@media (max-width: 480px) {

    .testimonial-section {
        padding: 50px 15px;
    }

    .testimonial-heading h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .testimonial-heading p {
        font-size: 14px;
    }

    .testimonial-image img {
        height: 220px;
    }

    .review-text {
        font-size: 15px;
    }

    .review-author h3 {
        font-size: 18px;
    }

    .review-author span {
        font-size: 13px;
    }

    .nav-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

}

/*About Us*/
.about-hero {
    position: relative;
    height: 45vh;
    min-height: 450px;

    background: url("/img/services/Flat-FLAT-INTERIORS.png") center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .55));
}

.about-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    padding: 0 20px;

    color: #fff;
}

.hero-tag {
    display: block;
    color: #d4b07a;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.about-content h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
}

@media(max-width:768px) {

    .about-hero {
        height: 40vh;
        min-height: 400px;
    }

    .about-content h1 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 16px;
    }

}

/*Section*/
.about-story {
    padding: 100px 8%;
    background: #f7f4ef;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-tag {
    display: inline-block;
    color: #b89362;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-left h2 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1f1f1f;
}

.about-left h2 span {
    color: #b89362;
    display: block;
}

.about-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    text-align: center;
}

.feature-box i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 18px;
    background: #fff;
    color: #b89362;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.feature-box h4 {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.about-btn {
    display: inline-block;
    padding: 16px 35px;
    background: #b89362;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
}

.about-btn:hover {
    transform: translateY(-4px);
}

.about-right {
    position: relative;
}

.about-right img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 40px;
}

.stats-card {
    position: absolute;
    bottom: 30px;
    right: -30px;

    width: 260px;

    background: #1d1d1d;
    color: #fff;

    border-radius: 25px;
    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.stat-item {
    padding: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.stat-item:last-child {
    border: none;
}

.stat-item h3 {
    font-size: 42px;
    color: #d5b07c;
    margin-bottom: 8px;
}

.stat-item p {
    color: #ddd;
    font-size: 14px;
}

@media(max-width:991px) {

    .about-story {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left h2 {
        font-size: 48px;
    }

    .about-right img {
        height: 500px;
    }

    .stats-card {
        right: 20px;
        bottom: 20px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .about-story {
        padding: 70px 20px;
    }

    .about-left h2 {
        font-size: 36px;
    }

    .about-left p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-box i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px;
    }

    .about-right img {
        height: 400px;
        border-radius: 25px;
    }

    .stats-card {
        width: 220px;
    }

    .stat-item h3 {
        font-size: 32px;
    }
}

/*Section*/
.group-section {
    padding: 40px 8%;
    background: #f7f4ef;
}

.group-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.group-heading span {
    color: #b89362;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
}

.group-heading h2 {
    font-size: 60px;
    margin: 15px 0;
    line-height: 1.1;
}

.group-heading p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

/* CARD 1 */

.dark-card {
    background: #171717;
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.dark-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(184, 147, 98, .08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.company-top img {
    width: 140px;
    margin-bottom: 25px;
}

.company-top h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.dark-card p {
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 35px;
}

.company-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.company-features span {
    padding: 10px 18px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50px;
    font-size: 14px;
}

.company-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #b89362;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
}

/* CARD 2 */

.light-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.company-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* MOBILE */

@media(max-width:991px) {

    .group-grid {
        grid-template-columns: 1fr;
    }

    .group-heading h2 {
        font-size: 42px;
    }

}

@media(max-width:768px) {

    .group-section {
        padding: 40px 20px;
    }

    .dark-card,
    .company-content {
        padding: 30px;
    }

    .group-heading h2 {
        font-size: 34px;
    }

    .company-top h3 {
        font-size: 28px;
    }

}

/*Section*/
.infrastructure-section {
    padding: 50px 8%;
    background: #f8f5f0;
}

.infra-header {
    text-align: center;
    margin-bottom: 60px;
}

.infra-header span {
    color: #b89362;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
}

.infra-header h2 {
    font-size: 58px;
    margin-top: 15px;
    line-height: 1.1;
}

.infra-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
}

.infra-video {
    position: relative;
}

.infra-video video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;

    background: rgba(0, 0, 0, .75);
    color: #fff;

    padding: 12px 18px;
    border-radius: 50px;

    font-size: 13px;
    letter-spacing: 1px;
}

.infra-content h3 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.infra-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
}

.infra-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-box h4 {
    font-size: 42px;
    color: #b89362;
    margin-bottom: 10px;
}

.stat-box span {
    color: #666;
    font-size: 15px;
}

@media(max-width:991px) {

    .infra-wrapper {
        grid-template-columns: 1fr;
    }

    .infra-video video {
        height: 500px;
    }

    .infra-header h2 {
        font-size: 42px;
    }

    .infra-content h3 {
        font-size: 34px;
    }
}

@media(max-width:768px) {

    .infrastructure-section {
        padding: 50px 20px;
    }

    .infra-header h2 {
        font-size: 32px;
    }

    .infra-video video {
        height: 420px;
        border-radius: 20px;
    }

    .infra-content h3 {
        font-size: 28px;
    }

    .infra-content p {
        font-size: 16px;
    }

    .infra-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-box h4 {
        font-size: 28px;
    }
}

/*contact form*/
.lux-contact {
    padding: 40px 8%;
    background: #f8f5f0;
}

.contact-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-heading span {
    color: #b89362;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
}

.contact-heading h2 {
    font-size: 58px;
    line-height: 1.1;
    margin: 15px 0;
    color: #1f1f1f;
}

.contact-heading p {
    color: #666;
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 35px;
    align-items: start;
}

/* LEFT CARD */

.contact-info-card {
    background: #1f1f1f;
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    position: sticky;
    top: 30px;
}

.contact-info-card h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.info-text {
    color: #d9d9d9;
    line-height: 1.8;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #b89362;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item span {
    color: #b89362;
    font-size: 14px;
}

.info-item p {
    margin-top: 5px;
}

.icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #b89362;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.icon i {
    color: #fff;
    font-size: 18px;
}

/* STATS */

.mini-stats {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-stats div {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, .05);
    border-radius: 15px;
}

.mini-stats h4 {
    color: #d2ae78;
    font-size: 24px;
    margin-bottom: 5px;
}

.mini-stats span {
    font-size: 12px;
}

/* FORM */

.contact-form-card {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 18px;

    border: 1px solid #e6e0d7;
    border-radius: 15px;

    background: #faf8f5;
    outline: none;

    font-size: 15px;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #b89362;
}

.contact-form-card textarea {
    height: 180px;
    resize: none;
}

.contact-form-card button {
    width: 100%;
    border: none;

    padding: 18px;

    color: #fff;
    font-size: 16px;
    font-weight: 600;

    border-radius: 60px;
    cursor: pointer;

    background: linear-gradient(90deg,
            #b89362,
            #d2ae78);

    transition: .3s;
}

.contact-form-card button:hover {
    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: relative;
        top: auto;
    }

    .contact-heading h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .lux-contact {
        padding: 40px 20px;
    }

    .contact-heading h2 {
        font-size: 34px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }
}

/* ===========================
        HERO SECTION
=========================== */

.product-hero {
    position: relative;
    min-height: 760px;
    height: 80vh;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    display: flex;
    align-items: center;
}

.product-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .55) 40%,
            rgba(0, 0, 0, .20) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    padding: 120px 8%;
}

.hero-content span {
    display: block;
    color: #d2ae78;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: #fff;
    font-size: 62px;
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content p {
    color: #f1f1f1;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.primary-btn {
    background: #b89362;
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-3px);
}

.secondary-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(12px);
}

@media (max-width:1366px) {

    .product-hero {
        min-height: 680px;
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .hero-content p {
        font-size: 18px;
    }

}

@media (max-width:991px) {

    .product-hero {
        height: 90vh;
        min-height: 620px;
        align-items: center;
    }

    .product-hero img {
        object-position: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, .65) 0%,
                rgba(0, 0, 0, .45) 60%,
                rgba(0, 0, 0, .55) 100%);
    }

    .hero-content {
        padding: 110px 40px 70px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 17px;
        max-width: 600px;
    }

    .hero-btns {
        margin-top: 30px;
    }

}

@media (max-width:768px) {

    .product-hero {
        min-height: 600px;
        height: auto;
        align-items: flex-start;
        border-radius: 0 0 28px 28px;
    }

    .product-hero img {
        object-position: 70% center;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, .72) 0%,
                rgba(0, 0, 0, .52) 45%,
                rgba(0, 0, 0, .68) 100%);
    }

    .hero-content {
        padding: 140px 26px 60px;
    }

    .hero-content span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.12;
        margin-bottom: 22px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 14px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

}

@media (max-width:480px) {

    .product-hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 120px 20px 50px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-content span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .primary-btn,
    .secondary-btn {
        font-size: 15px;
    }

}

/*Overview */
.service-overview {

    padding: 40px 8%;

    background: #fff;

}

.overview-wrapper {

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 70px;

    align-items: center;

}

.overview-image {

    overflow: hidden;

    border-radius: 30px;

}

.overview-image img {

    width: 100%;

    display: block;

    transition: .6s;

}

.overview-image:hover img {

    transform: scale(1.05);

}

.small-title {

    color: #b89362;

    letter-spacing: 3px;

    font-size: 13px;

}

.overview-content h3 {

    font-size: 38px;

    margin: 20px 0;

    line-height: 1.2;

}

.overview-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 30px;

}

.overview-content ul {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

}

.overview-content li {

    position: relative;

    padding-left: 32px;

    margin-bottom: 18px;

    color: #333;

}

.overview-content li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: #b89362;

    font-weight: bold;

}

.overview-btn {

    display: inline-block;

    padding: 16px 38px;

    border-radius: 50px;

    background: #b89362;

    color: #fff;

    text-decoration: none;

    transition: .35s;

}

.overview-btn:hover {

    background: #a27d4d;

}

@media(max-width:991px) {

    .overview-wrapper {

        grid-template-columns: 1fr;

    }

    .section-title h2 {

        font-size: 38px;

    }

    .overview-content h3 {

        font-size: 34px;

    }

}

@media(max-width:768px) {

    .service-overview {

        padding: 70px 20px;

    }

    .section-title {

        margin-bottom: 40px;

    }

    .overview-wrapper {

        gap: 35px;

    }

    .overview-image {

        border-radius: 20px;

    }

}

/*Layout*/
.design-collection {

    padding: 40px 8%;
    background: #f8f5ef;

}

.section-title {

    text-align: center;
    margin-bottom: 70px;

}

.section-title span {

    color: #b88b4a;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;

}

.section-title h2 {

    font-size: 50px;
    margin: 18px 0;
    color: #222;

}

.section-title p {

    max-width: 720px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 18px;

}

/* ---------- */

.design-row {

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 70px;

}

.design-image {

    overflow: hidden;
    border-radius: 18px;

}

.design-image img {

    width: 100%;
    display: block;
    border-radius: 18px;
    transition: .6s;

}

.design-image:hover img {

    transform: scale(1.06);

}

.design-content {

    padding-right: 40px;

}

.design-number {

    font-size: 70px;
    color: #ece7dd;
    font-weight: bold;
    display: block;
    line-height: 1;

}

.design-content h3 {

    font-size: 42px;
    margin-top: -20px;
    color: #222;

}

.line {

    width: 70px;
    height: 3px;
    background: #c49b5b;
    margin: 22px 0;

}

.design-content p {

    color: #666;
    line-height: 1.9;
    font-size: 17px;

}

.design-content ul {

    list-style: none;
    margin: 35px 0;
    padding: 0;

}

.design-content ul li {

    margin-bottom: 18px;
    color: #333;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;

}

.design-content ul i {

    color: #c49b5b;
    font-size: 15px;

}

.design-info {

    display: flex;
    gap: 70px;
    border-top: 1px solid #ddd;
    padding-top: 25px;

}

.design-info span {

    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 6px;

}

.design-info h5 {

    font-size: 20px;
    color: #222;

}

/* Hover */

.design-row:hover .design-image img {

    transform: scale(1.05);

}

/* Mobile */

@media(max-width:991px) {

    .design-collection {

        padding: 40px 20px;

    }

    .design-row {

        grid-template-columns: 1fr;
        gap: 40px;

    }

    .design-content {

        padding: 0;

    }

    .section-title h2 {

        font-size: 24px;

    }

    .design-content h3 {

        font-size: 32px;

    }

    .design-number {

        font-size: 55px;

    }

    .design-info {

        gap: 40px;
        flex-wrap: wrap;

    }

}

.design-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 90px 0;
}

/* Alternate Layout */

.design-row.reverse .design-image {
    order: 2;
}

.design-row.reverse .design-content {
    order: 1;
}

/* Mobile */

@media(max-width:991px) {

    .design-row,
    .design-row.reverse {

        grid-template-columns: 1fr;
        gap: 35px;

    }

    .design-row.reverse .design-image,
    .design-row.reverse .design-content {

        order: unset;

    }

}

/*Material Options*/
.material-section {

    padding: 40px 8%;

}

.section-heading {

    text-align: center;
    margin-bottom: 70px;

}

.section-heading span {

    color: #c39b61;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;

}

.section-heading h2 {

    font-size: 48px;
    margin: 15px 0;
    color: #222;

}

.section-heading p {

    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;

}

.material-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;

}

.material-card {

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

}

.material-card:hover {

    transform: translateY(-10px);

}

.material-card img {

    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;

}

.material-card:hover img {

    transform: scale(1.08);

}

.material-content {

    padding: 30px;

}

.material-content h3 {

    font-size: 26px;
    margin-bottom: 15px;
    color: #222;

}

.material-content p {

    color: #666;
    line-height: 1.8;

}

@media(max-width:991px) {

    .material-grid {

        grid-template-columns: 1fr;

    }

    .section-heading h2 {

        font-size: 34px;

    }

    .material-card img {

        height: 220px;

    }

}

/* ===============================
   WORKING PROCESS
================================== */

.process-section {
    padding: 80px 8%;
    background: #fff;
}

.process-heading {
    text-align: center;
    margin-bottom: 70px;
}

.process-heading span {
    color: #c39b61;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.process-heading h2 {
    font-size: 48px;
    color: #222;
    margin: 18px 0;
    line-height: 1.2;
}

.process-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.process-card {
    flex: 1;
    position: relative;
    text-align: center;
    transition: .4s;
}

.step-number {
    font-size: 70px;
    font-weight: 700;
    color: #efe8de;
    line-height: 1;
    margin-bottom: 25px;
}

.step-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d7b17d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c39b61;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.process-card h3 {
    margin: 28px 0 15px;
    font-size: 26px;
    color: #222;
}

.process-card p {
    max-width: 260px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.process-line {
    width: 90px;
    height: 2px;
    background: #d7b17d;
    margin-top: 112px;
    flex-shrink: 0;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-card:hover .step-icon {
    background: #c39b61;
    color: #fff;
}

/* ===============================
   TABLET
================================== */

@media(max-width:991px) {

    .process-section {
        padding: 70px 25px;
    }

    .process-heading {
        margin-bottom: 50px;
    }

    .process-heading h2 {
        font-size: 34px;
    }

    .process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .process-card {
        width: 100%;
        max-width: 340px;
        flex: none;
        margin: 0 auto;
        text-align: center;
    }

    .step-number {
        font-size: 58px;
        margin-bottom: 18px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .process-card h3 {
        font-size: 24px;
    }

    .process-card p {
        max-width: 280px;
        margin: 15px auto 0;
    }

    .process-line {
        width: 2px;
        height: 70px;
        margin: 30px auto;
    }

}

/* ===============================
   MOBILE
================================== */

@media(max-width:576px) {

    .process-section {
        padding: 60px 20px;
    }

    .process-heading span {
        letter-spacing: 3px;
        font-size: 12px;
    }

    .process-heading h2 {
        font-size: 28px;
    }

    .process-heading p {
        font-size: 15px;
    }

    .process-card {
        max-width: 100%;
    }

    .step-number {
        font-size: 52px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 24px;
    }

    .process-card h3 {
        font-size: 22px;
    }

    .process-card p {
        max-width: 260px;
        font-size: 15px;
        line-height: 1.8;
    }

    .process-line {
        height: 60px;
    }

}

/*==========================
      PROJECTS SECTION
===========================*/

.projects-gallery {
    padding: 40px 8%;
    background: #fdfbf7;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.section-title span {
    display: inline-block;
    color: #c59b63;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 48px;
    color: #1f1f1f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}


/*==========================
      PROJECT ROW
===========================*/

.project-row {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 90px;
}

.project-row.reverse {
    flex-direction: row-reverse;
}


/*==========================
      IMAGE
===========================*/

.project-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.project-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.project-image:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
}

.project-overlay span {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(197, 155, 99, .92);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/*==========================
      CONTENT
===========================*/

.project-content {
    flex: 1;
}

.project-content h3 {
    font-size: 42px;
    color: #1f1f1f;
    margin-bottom: 18px;
}

.project-line {
    width: 80px;
    height: 3px;
    background: #c59b63;
    border-radius: 20px;
    margin-bottom: 28px;
}

.project-content p {
    color: #666;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 35px;
}


/*==========================
      DETAILS
===========================*/

.project-details {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.project-details div {
    flex: 1;
    min-width: 150px;
    background: #fff;
    border-radius: 15px;
    padding: 24px;
    border: 1px solid #ececec;
    transition: .4s;
}

.project-details div:hover {
    transform: translateY(-8px);
    border-color: #c59b63;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.project-details span {
    display: block;
    color: #999;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-details h5 {
    color: #1f1f1f;
    font-size: 19px;
    font-weight: 600;
}


/*==========================
      HOVER
===========================*/

.project-row:hover .project-line {
    width: 120px;
    transition: .4s;
}

.project-row:hover h3 {
    color: #c59b63;
    transition: .3s;
}


/*==========================
      RESPONSIVE
===========================*/

@media(max-width:1100px) {

    .project-row {
        gap: 40px;
    }

    .project-content h3 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 40px;
    }

}


@media(max-width:991px) {

    .project-row,
    .project-row.reverse {
        flex-direction: column;
    }

    .project-image,
    .project-content {
        width: 100%;
    }

    .project-content {
        text-align: center;
    }

    .project-line {
        margin: 0 auto 28px;
    }

    .project-details {
        justify-content: center;
    }

}


@media(max-width:768px) {

    .projects-gallery {
        padding: 40px 6%;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 15px;
    }

    .project-row {
        margin-bottom: 70px;
    }

    .project-content h3 {
        font-size: 28px;
    }

    .project-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .project-details {
        flex-direction: column;
    }

    .project-details div {
        min-width: 100%;
    }

    .project-overlay {
        top: 18px;
        left: 18px;
    }

    .project-overlay span {
        padding: 8px 18px;
        font-size: 11px;
    }

}