/*
|---------------------------------------------------------
| Main Header                                      1284PX
|---------------------------------------------------------
|
*/

.top-header-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.top-header-logo-div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header-logo-img {
    width: 50px;
    height: 50px;
}

.top-header-logo-txt {
    font-size: 32px;
}

.hamburger {
    display: none;
    visibility: hidden;
}

.header-logo-img {
    max-width: 120px;
    margin: 0 auto;
}

.main-nav ul {
    padding: 0;
    gap: 32px;
    display: flex;
    align-items: center;
    list-style: none;
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.main-nav a {
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    text-transform: uppercase;
    font-feature-settings: "case" on;
    transition: color 0.2s linear;
}

.current-menu-item a, 
.main-nav a:hover,
.current-menu-parent a {
    color: #EF8D4E;
}

/*
|---------------------------------------------------------
| Hero Section                                     1284PX
|---------------------------------------------------------
|
*/

.section-hero {
    position: relative;
    display: flex;
    padding: 90px 0;
}

.hero-section-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(25, 16, 12, 0.9)
}

.hero-section-ui {
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section-left {
    width: 45%;
}

.hero-section-right {
    width: 55%;
    display: flex;
    justify-content: right;
}

.hero-section-h1 {
    margin: 0;
    padding: 0;
    font-size: 136px;
    line-height: 120px;
}

.hero-section-img-div {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 642px;
    float: right; 
}

.hero-section-img {
    width: 100%;
    height: auto;
    max-width: 642px;
    max-height: 747px;
}

.hero-circle {
    position: absolute;
    width: 22%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #D39B80;
    top: -5%;
    left: -10%;
    background-size: 100%;
    background-image: url('../media/img/gt-badge.png');
}

.floor-pattern {
    position: absolute;
    z-index: 2;
    width: 30%;
    max-width: 500px;
    max-height: 490px;
    aspect-ratio: 50 / 49;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../media/img/floor-pattern-1.png')
}

.fp-bottom-left { bottom: 0; left: 0; }
.fp-top-right { top: 0; right: 0; rotate: 180deg;}

/*
|---------------------------------------------------------
| Front Page Services Section                       1284PX
|---------------------------------------------------------
|
*/

.services-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.services-card-img-div {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.services-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.services-card-info-div {
    padding: 40px 20px 20px;
    text-align: center;
}

.services-desc {
    padding: 0 10px;
    text-transform: capitalize;
}

.services-card-bottom {
    display: flex;
    padding-bottom: 30px;
    justify-content: center;
    margin-top: auto;
}

.services-arrow {
    display: block;
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-image: url('../media/img/arrow-button.svg');
}

/*
|---------------------------------------------------------
| Front Page About Section                       1284PX
|---------------------------------------------------------
|
*/

.section-about-img-div {
    width: 100%;
    height: 100%;
    background-color: #EF8D4E;
}

.section-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-about-right {
    display: flex;
    padding: 60px 0;
    align-items: center;
}

.section-about-txt-div {
    margin-bottom: 30px;
}

.section-about-txt-div p {
    font-size: 15px;
    line-height: 26px;
}

.section-about-txt-div h3 {
    font-size: 24px;
}


/*
|---------------------------------------------------------
| Front Page Flooring Types Section                 1284PX
|---------------------------------------------------------
|
*/

.type-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.type-card-title {
    display: block;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px 10px;
    text-align: center;
    box-sizing: border-box;
}

.type-card:hover .type-card-title {
    padding: 50px 10px;
}

.type-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
|---------------------------------------------------------
| Front Page Projects Section                       1284PX
|---------------------------------------------------------
|
*/

.section-projects {
    position: relative;
}

.section-projects-ui {
    z-index: 2;
    position: relative;
}

.splide {
    margin: 0 auto;
}

.splide {
    max-width: 100%;
}

.project-card-link {
    display: block;
    width: 320px;
    height: 320px;
    overflow: hidden;
    border: 0.5px solid #53443B;
    box-sizing: border-box;
    background-color: #EF8D4E;
}

/*
|---------------------------------------------------------
| Front Page Testimonials Section                  1284PX
|---------------------------------------------------------
|
*/

.section-testimonial {
    position: relative;
}

.testimonial-cards {
    position: relative;
}

.rating-image-div {
    display: block;
    width: 201px;
    height: 43px;
    margin: 20px auto;
    background-image: url('../media/img/reviews-image.png');
}

.testimonial-card {
    position: relative;
    border-radius: 6px;
    padding: 24px 24px 54px;
    box-sizing: border-box;
    background-color: #fff;
}

.testimonial-card-g-logo {
    position: absolute;
    display: block;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    background-image: url('../media/img/google-logo.svg');
}

.testimonial-author-div {
    margin: 20px 0;
    text-align: center;
}

.testimonial-card-txt {
    line-height: 24px;
}

.testimonial-card-img-div {
    text-align: center;
}

.testimonial-card-quote-img {
    display: inline-block;
    width: 32px;
    height: 28px;
    background-image: url('../media/img/quote-icon.svg');
}

.testimonial-card-stars-img {
    display: inline-block;
    width: 120px;
    height: 24px;
    margin: 20px 0;
    background-size: 120px 24px;
    background-image: url('../media/img/star-ratings.png');
}

.slider-arrows {
    position: absolute;
    bottom: -90px;
    width: 100%;
    display: flex;
    z-index: 3;
    gap: 10px;
    justify-content: center;
}

.slider-arrow {
    top: unset !important;
    transform: unset!important;
    position: unset!important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 6px !important;
    background: none !important;
    border: 2px solid #EF8D4E !important;
}

.btn-section-testimonial {
    margin-top: 90px;
}

/*
|---------------------------------------------------------
| Front Page Articles Section                      1284PX
|---------------------------------------------------------
|
*/

.section-blog-ui {
    z-index: 2;
    position: relative;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.blog-card-img-div {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #53443B;
}

.blog-card-img {
    width: 100%;
    height: auto;
}

.blog-card-content-div {
    padding: 24px;
    box-sizing: border-box;
}

.blog-card-date {
    display: inline-block;
    margin-bottom: 20px;
}

.blog-card-bottom {
    display: flex;
    margin-top: auto;
    align-items: center;
    padding-left: 24px;
    box-sizing: border-box;
    justify-content: space-between;
}

.blog-card-bottom-line {
    max-width: 300px;
    width: 80%;
    height: 1px;
    background-color: #D8D6D5;
}

.blog-card-link {
    width: 48px;
    height: 48px;
    background-color: #EF8D4E;
    background-size: 12px 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../media/img/arrow-link.png');
}

/*
|---------------------------------------------------------
| Front Page Contact Section                       1284PX
|---------------------------------------------------------
|
*/

.section-contact-ui {
    display: grid;
    gap: 36px 2.80%;
    padding: 48px;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    grid-template-columns: 1fr 2fr;
}

.section-contact-left {
    position: relative;
    min-height: 574px;
    overflow: hidden;
    border-radius: 6px;
    background-color: #D8D6D5;
    background-size: cover;
}

.section-contact-left-overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.section-contact-left-content {
    z-index: 2;
    padding: 32px;
    position: relative;
    box-sizing: border-box;
}

.section-contact-line {
    height: 1px;
    margin: 20px 0 40px;
    background-color: #fff;
}

.section-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.section-contact-item-txt {
    color: #fff;
    word-break: normal;
    font-size: 16px;
    text-decoration: none;
}

.section-contact-right {
    height: auto;
}

.text-danger {
    font-size: 16px !important;
    padding: 10px;
    box-sizing: border-box;
    background-color: #53443B;
}

.ff-el-input--label {
    color: #535353;
    font-size: 14px;
    margin-bottom: 10px !important;
}

.ff-el-form-control {
    min-height: 60px;
    border: 1px solid #ECE2D7 !important;
    font-family: 'Poppins' !important;
    font-size: 16px !important;
}

.contact-form-message-field {
    min-height: 220px !important;
}

.ff-btn-submit {
    margin-top: 20px;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background-color: #EF8D4E;
    transition: background-color 0.2s linear;
}

.ff-message-success {
    background-color: #18C07A;
}

.contact-form-btn {
    font-family: 'Bebas Neue' !important;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.nominee-bg {
    width: 98%;
    max-width: 360px;
    height: auto;
    margin: 80px auto 0;
    padding: 24px;
    border-radius: 24px;
    box-sizing: border-box;
    background-color: #fff;
}


.nominee-img {
    width: 100%;
    height: auto;
}


/*
|---------------------------------------------------------
| Main Footer                                      1284PX
|---------------------------------------------------------
|
*/

.footer-top {
    display: flex;
    gap: 24px;
    flex-direction: column;
    margin-top: -60px;
    align-items: center;
}

.footer-top-logo-img {
    width: 120px;
    height: 120px;
    display: inline;
}

.top-header-logo-txt {
    display: inline;
}

.footer-text-p {
    max-width: 568px;
    width: 100%;
    text-align: center;
}

.footer-contact-div,
.footer-social-div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: center;
}

.footer-contact-item,
.footer-social-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-top-line {
    width: 100%;
    height: 1px;
    background-color: #53443B;
}

.footer-nav, .footer-secondary-nav {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.footer-nav ul,
.footer-secondary-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}

.footer-nav ul li a,
.footer-secondary-nav ul li a {
    color: #FAF3DF;
    text-decoration: none;
}

.footer-nav ul li a:hover,
.footer-secondary-nav ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 100px;
    text-align: center;
}


/*
|---------------------------------------------------------
| Page Banner                                      1284PX
|---------------------------------------------------------
|
*/

.page-banner {
    overflow: hidden;
    position: relative;
    padding: 128px 0;
    box-sizing: border-box;
    background-color: #53443B;
}

.page-banner-ui {
    z-index: 3;
    position: relative;
    text-align: center;
}

.page-banner-h1 {
    font-size: 32px;
}

.page-banner-transparent-txt {
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0.6;
    font-size: 412px;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

/*
|---------------------------------------------------------
| Page About Us                                    1284PX
|---------------------------------------------------------
|
*/

.page-about-content-left h3 {
    font-size: 24px;
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.page-about-content-img {
    width: 100%;
}

.page-about-content-img-caption {
    padding: 12px;
    margin-top: 12px;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
}

/*
|---------------------------------------------------------
| Page Services                                    1284PX
|---------------------------------------------------------
|
*/

.service-ui {
    display: flex;
    gap: 36px;
    align-items: center;
}

.service-container {
    background-color: #F5EEE4;
}

.service-container:last-child {
    padding-bottom: 200px;
} 

.service-container:nth-child(2n) {
    background-color: #FAF6ED;
}

.service-img-div {
    flex: 0 0 40%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-ui.image-left {
    flex-direction: row;
}

.service-ui.image-right {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 80px 0;
    box-sizing: border-box;
}

/*
|---------------------------------------------------------
| Page Flooring Types                              1284PX
|---------------------------------------------------------
|
*/

.types-container {
    background-color: #FAF6ED;
}

.types-container:nth-child(2n) {
    background-color: #F5EEE4;
}

.type-img-div {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: #18C07A;
}

.type-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-ui {
    padding: 80px 0;
    box-sizing: border-box;
    grid-template-columns: 1fr 2fr;
}

.type-title {
    font-size: 32px;
}

.section-types-videos {
    padding: 80px 0 200px;
}

.types-videos-ui {
    display: grid;
    gap: 36px 2.80%;
    justify-content: center;
    grid-template-columns: repeat(2, auto); 
}

.types-video {
    max-width: 100%;
}

/*
|---------------------------------------------------------
| Page Projects                                    1284PX
|---------------------------------------------------------
|
*/

.project-video {
    width: 100%;
}

.project-gallery-a {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.project-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-blog-cards {
    gap: 72px 2.80%;
}

/*
|---------------------------------------------------------
| Single Blog Styles                               1284PX
|---------------------------------------------------------
|
*/

.article-blog {
    padding: 0 0 200px;
}

.blog-ui {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.blog-img-div {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-div {
    padding: 40px 80px;
    box-sizing: border-box;
    background-color: #fff;
}

/*
|---------------------------------------------------------
| FAQ Page Styles                                  1284PX
|---------------------------------------------------------
|
*/

.faq-ui {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.accordion {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background: #fff;
    padding: 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header.active {
    background-color: #372924
}

.accordion-header.active .accordion-title {
    color: #fff
}

.accordion-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-body {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

/*
|---------------------------------------------------------
| Contact Page Styles                              1284PX
|---------------------------------------------------------
|
*/

.page-contact-top {
    display: grid;
    gap: 36px 2.80%;
    grid-template-columns: 1fr 2fr;
}

.page-contact-items {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.page-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    word-break: break-all;
}

.page-contact-item-icon {
    width: 24px;
    height: 24px;
    filter: invert(59%) sepia(59%) saturate(493%) hue-rotate(337deg) brightness(95%) contrast(97%);
}

.page-contact-right, .page-contact-item  {
    padding: 24px;
    border-radius: 6px;
    box-sizing: border-box;
}

.page-contact-map {
    padding: 12px 24px;
    margin-top: 36px;
    border-radius: 6px;
    box-sizing: border-box;
}

.page-contact-map iframe {
    border-radius: 6px;
}
















