/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
}

:root {
    --black: #000;
    --light-gray: #EFEFEF;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border:1px solid #000;
    --text-transform: uppercase;
}

body {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: black;
    background-color: var(--white);
    text-transform: uppercase;
}
.container {
    padding-right: 300px;
    padding-left: 300px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}
h1 {
    font-size: 56px;
    line-height: 1.2;
}
h2 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: 0.04em;
}
h3 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
p {
    font-size: 14px;
    color: black;
    letter-spacing: 0.04em;
    text-transform: none;
}
/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99999999;
}
.header__fixed:after {
    content: "";
    position: absolute;
    bottom: -5px;
    border-bottom: 4px solid #EFEFEF;
    width: 100%;
}
/* Fixed Header */
.header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid #000;
    height: 60px;
    line-height: 60px;
    transform: translateY(0);
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.04em;
    z-index: 9999;
}
#fixed-header .cta-button {
    min-height: 40px;
}
.header__fixed .container {
    display: flex;
    align-items: center;
    height: 60px;
    line-height: 60px;
}

.fixed-burger {
    display: none;
    width: 30px;
    z-index: 9999999;
    position: relative;
}
.header__row {
    font-size: 14px;
    letter-spacing: 0.04em;
    background: #fff;
    z-index: 999999;
    position: relative;
}
.navbar .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-logo {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    height: 90px;
}
.nav-logo:hover {
    color: var(--primary-dark);
}
#fixed-header .nav-logo .mobile-logo {
    height: 40px;
}
.mobile-logo {
    display: none;
}

.nav-menu, .shop-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.shop-menu{
    float: right;
}
.nav-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}   
.nav-link:hover {
    color: var(--black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 9999999;
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.nav-toggle img {
    width: 30px;
    height: 30px;
}
.navbar .header__row:first-child .container {
    height: 90px;
    line-height: 90px;
}
.navbar .header__row:nth-child(2) .container{
    height: 60px;
    line-height: 60px;
}
.header__info {
    background: #EFEFEF;
    height: 40px;
    line-height: 40px;
    position: relative;
    border-top: 1px solid;
    border-bottom: 1px solid;
    z-index: 999;
}
.header__info p {
    font-size: 14px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-transform: uppercase;
}
.header__info:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #fff;
}
/* Links */
.custom-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.custom-link:hover {
    color: var(--black);
}

.custom-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition);
}
.custom-link:hover::after {
    width: 100%;
}
/* Mobile Marquee */
.header__info-marquee {
    display: none;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 5s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 0;
    width: 60px;
    height: 60px;
    border: none;
    background-color: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    box-shadow: none;
}

.mobile-menu-close img {
    width: 20px;
    height: 20px;
}
.navbar .header__row:first-child .col-20{
    text-align: center;
    height: 90px;
}

.localization {
    text-align: right;
}
li.nav-item {
    list-style: none;
    display: inline-block;
}

li.nav-item.cart-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-item {
    align-items: center;
}

.cart-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.cart-icon {
    display: inline-flex;
    align-items: center;
}
.cart-price {
    font-size: 12px;
    color: var(--black);
    margin-bottom: 2px;
}
.search-bar input {
    text-transform: uppercase;
    outline: none;
    box-shadow: none;
    background: white;
    border: 1px solid black;
}
.search-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 90px;
    line-height: 90px;
}
/* Hero Section */
.hero {
    background: #EFEFEF;
    color: var(--white);
    padding: 120px 0 120px;
    text-align: center;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-position: 60% 30%;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-container {
    max-width: 700px;
    padding: 0;
    text-align: left;
    margin-left: 300px;
}
.hero h1 {
    margin-bottom: 1.5rem;
    color: #000000;
}
.hero h2, .hero p {
    color: #000000;
}
.hero-description {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 34px;
    color: black;
}
.cta-button {
    background-color: white;
    color: black;
    cursor: pointer;
    transition: all 1s var(--transition);
    border: var(--border);
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 14px;
    text-transform: var(--text-transform);
    position: relative;
    box-shadow: 4px 4px 0px 0px var(--black);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.cta-button:before {
    content: "";
    width: 100%;
    height: 4px;
    background: #EFEFEF;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.cta-button:hover {
    box-shadow: 0px 0px 0px 0px var(--black);
    background: var(--light-gray);
    top: 4px;
    left: 4px;
}
.cta-button:hover:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
    display: block;
    height: 4px;
}
.cta-button:active {
    background: #EFEFEF;
}
.cta-button:active:before,.cta-button:active:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background: #EFEFEF;
    display: block;
    height: 4px;
}
/* Sections */
section {
    padding: 80px 0;
}
.section-header h2 {
    font-size: 24px;
    letter-spacing: 0.3em;
}
.section-header.center {
    text-align: center;
}
.about {
    background-color: var(--secondary-color);
}
.contact {
    background-color: var(--gray-100);
}

/* Flexbox container for column layouts */
.col-group {
    display: flex;
    flex-wrap: wrap;
}
.col-10 {
    width: 10%;
    flex: 0 0 10%;
}
.col-20 {
    width: 20%;
    flex: 0 0 20%;
}
.col-25 {
    width: 25%;
    flex: 0 0 25%;
}
.col-30 {
    width: 30%;
    flex: 0 0 30%;
}
.col-40 {
    width: 40%;
    flex: 0 0 40%;
}
.col-50 {
    width: 50%;
    flex: 0 0 50%;
}
.col-60 {
    width: 60%;
    flex: 0 0 60%;
}
.col-70 {
    width: 70%;
    flex: 0 0 70%;
}
.col-80 {
    width: 80%;
    flex: 0 0 80%;
}
.col-100 {
    width: 100%;
    flex: 0 0 100%;
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
}
#contactForm span {
    display: block;
}
.wpcf7-response-output {
    border: 1px solid black !important;
    font-size: 14px;
    text-align: center;
    padding: 6px 15px !important;
    margin: 20px 0 !important;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 11px;
    margin-top: 3px !important;
    right: 0;
}
input.file {
    display: inline-flex;
    align-items: center;
    padding: 0 15px !important;
    height: 50px;
    line-height: 50px;
}
.contact-form-wrapper {
    margin: 0 auto;
    width: 500px;
}
.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #000000;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-family: neue-haas-grotesk-display, sans-serif;
    transition: var(--transition);
    background: none;
    width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.1);
    background: white;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
/* Feature Section */
.feature-section {
    background-color: var(--white);
    padding: 120px 0 0;
    border-bottom: 1px solid;
}
.feature-header {
    text-align: center;
    margin-bottom: 120px;
}
.feature-header h2 {
    margin-bottom: 20px;
    color: var(--black);
}
.feature-header h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    color: var(--black);
}
.feature-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--black);
}
/*Feature boxes*/
#feature_boxes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}
.feature_box {
    width: 100%;
    position: relative;
    z-index: 999;
}
.feature_box_left {
    position: absolute;
    left: 0;
    height: -webkit-fill-available;
    flex: 0 0 50%;
    width: 50%;
    background: no-repeat center / cover;
    z-index: -9;
}
.feature_box.left .image_feature_box_right {
    left: 0;
    border-left: none;
}
.feature_box.right .image_feature_box_right {
    border-right: none;
}
.image_feature_box_right {
    position: absolute;
    right: 0;
    height: -webkit-fill-available;
    flex: 0 0 50%;
    width: 50%;
    background: no-repeat center / cover;
    border: 1px solid black;
}
.feature_box.left .empty-space {
    width: 50%;
    display: inline-flex;
    float: left;
    min-height: 60vh;
}
.feature_box_row {
    display: flex;
    flex-wrap: nowrap;
    width: 50%;
    min-height: 60vh;
}
.feature_box .feature_box_text {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0 0;
    min-height: 400px;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 60px;
    word-wrap: break-word;
    width: 50%;
    margin-left: 100px;
}
.feature_box_text p {
    margin-top: 30px;
    text-transform: lowercase;
    letter-spacing: 0.1px;
}
#feature_boxes li:not(:first-child) {
    margin-top: -1px;
    display: inline-flex;
}
#feature_boxes li:not(:first-child) .image_feature_box_right {
    border-bottom: none;
}
#feature_boxes .image_credit {
    z-index: 9999;
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
}
#feature_boxes .image_credit.nav-link:after {
    bottom: 2px !important;
}
.feature_box.left .image_credit {
    right: 20px;
}
.feature_box.right .image_credit {
    left: 20px;
}
/* FAQ */
.faq .collapse {
    position: relative;
}
.faq .accordion {
    color: var(--dark-gray);
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
    outline: none;
    transition: 0.4s;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px 22px 20px;
    position: relative;
}
.faq .accordion:before {
    content: "";
    width: calc(100% - 2px);
    height: 4px;
    background: #ffffff;
    display: block;
    position: absolute;
    left: 1px;
    top: 1px;
}
.accordion b {
    margin-right: 10px;
}
.faq .accordion i {
    transition: transform 0.3s ease;
    font-size: 16px;
    color: #000000;
}

.faq .accordion.active i {
    transform: rotate(180deg);
}
.faq .faq_question {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: pointer;
    width: 100%;
    border: 1px solid;
    text-align: left;
    line-height: 28px;
    outline: none;
    transition: 0.4s;
    margin-bottom: -1px;
}
.faq .faq_question:hover {
    background: white;
}
.faq .panel {
    padding: 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 16px;
    line-height: 24px;
}
.faq .panel p {
    padding: 0 20px 20px 20px;
}
.faq_question:has(.accordion.active) {
    background: #fff;
  }
  .panel ul {
    text-transform: none;
    padding: 0 20px 20px 20px;
    list-style: inside;
}
/* Partners Section */
.partners {
    background-color: var(--white);
    padding: 100px 0 160px;
    border-top: 1px solid #000;
    border-bottom: 1px solid;
}

.partners .owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .owl-carousel img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.partners .owl-stage {
    display: inline-flex;
    align-items: center;
}
.partners .owl-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
/* Contact Section */
#contact .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
    align-items: center;
}
#contact {
    background: var(--light-gray);
    border-bottom: 4px solid white;
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}
#contact h2 {
    margin-bottom: 20px;
}
#contact .container {
    z-index: 99999;
    position: relative;
}
#contact ul {
    list-style: none;
    margin-top: 30px;
}
input, textarea {
    height: 40px;
    line-height: 30px;
    padding: 15px;
    outline: none;
    background: var(--light-gray);
    border: 1px solid black;
    position: relative;
    font-family: neue-haas-grotesk-display, sans-serif;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-width: 300px;
    box-shadow: 4px 4px 0px 0px var(--black);
}
textarea::placeholder {
    color: #000;
  }
button {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 0;
    background: white;
    border: 1px solid black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 4px 4px 0px 0px var(--black);
    z-index: 9;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
input::placeholder {
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
/* Contact Marquee */
.contact-marquee {
    position: absolute;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 150px;
    color: #fff;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    letter-spacing: 0.5em;
}
  .track {
    display: inline-flex;
    will-change: transform;
  }
  .item {
    padding: 0 2rem;
    white-space: nowrap;
  }
  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
/* Footer */
footer {
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    border-top: 1px solid var(--black);
}
footer .col-25 p {
    color: var(--black);
    margin: 30px 0;
    width: 80%;
    letter-spacing: 0.04em;
}
.footer-logo img {
    width: 80px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
}
footer ul li {
    list-style: none;
}
footer.footer .col-25:nth-child(2) {
    border-left: 1px solid var(--black);
    padding-left: 40px;
}
footer .col-25 {
    padding: 40px 0;
}
.footer-bottom {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    padding: 15px 0;
    height: 60px;
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.footer-bottom p {
    font-size: 14px;
}
.footer-extra {
    background: #EFEFEF;
    line-height: 40px;
    height: 40px;
    margin-top: 4px;
}
.footer-extra p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
    width: 100%;
}
footer span {
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.1em;
}
footer .social-links {
    display: inline-flex;
    margin-top: 25px;
}
footer .social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    display: inline-flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}
.social-links a:after {
    content: "";
    width: 100%;
    height: 4px;
    background: var(--light-gray);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
footer .social-links li {
    margin-left: -1px;
}
footer .social-links li:first-child {
    margin-left: 0;
}
footer .social-links a:hover {
    background: #EFEFEF;
}
.footer-bottom .col-50:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.footer-logo {
    margin-bottom: 20px;
}
/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50vw;
    height: 100%;
    background-color: var(--white);
    z-index: 999999;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid #000;
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-content {
    padding-top: 100px;
}

.mobile-nav-section,
.mobile-localization-section {
    margin-bottom: 2rem;
}
.mobile-nav-section h3, .mobile-localization-section h3 {
    font-size: 16px;
    color: var(--black);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #EFEFEF;
}

.mobile-nav-menu,
.mobile-localization {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-link {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000;
    margin-top: -1px;
}

.mobile-nav-link:hover {
    color: var(--black);
    padding-left: 0.5rem;
}

/* Responsive Design */

@media screen and (max-width: 1920px) {
    .container {
        padding-right: 10.4%;
        padding-left: 10.4%;
    }
    .hero-container {
        margin-left: 10.4%;
    }
    .feature_box.left .feature_box_text {
        margin-left: 100px;
    }
    .feature_box .feature_box_text {
        margin-left: 0;
        width: 70%;
    }


}

@media screen and (max-width: 1080px) {
    .header__info .container {
        display: none;
    }
    .header__info-marquee {
        display: block;
        text-align: center;
    }
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
    form#newsletterForm input {
        width: 100% !important;
    }
    .feature_box.left .feature_box_text {
        margin-left: 40px;
    }
    .feature_box .feature_box_text {
        width: 80%;
    }
    #contact .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-container {
        margin-left: 40px;
    }
    .contact-form {
        margin-top: 50px;
    }
    .hero {
        padding: 70px 0 60px;
    }
}

@media screen and (max-width: 992px) {
    footer .col-25:first-child {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
    }
    footer .col-25:nth-child(2), footer .col-25:nth-child(3), footer .col-25:nth-child(4) {
        width: 33.333%;
        flex: 0 0 33.333%;
        border-left: none !important;
        padding-left: 0 !important;
    }
    footer .col-25:first-child:after {
        content: "";
        border-bottom: 1px solid #000;
        width: calc(100% + 80px);
        position: absolute;
        bottom: 0;
        left: -40px;
        overflow: hidden;
    }
    #newsletter .col-50 {
        width: 100%;
        flex: 0 0 100%;
    }
    #newsletterForm {
        margin-top: 30px;
    }
    
    .merch-content .col-50 {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .merch-content {
        gap: 60px;
    }
    .fixed-nav-menu {
        display: none;
    }
    .nav-toggle {
        display: flex;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: flex-start;
        z-index: 9999999;
        position: relative;
    }
    .feature_box_left {
        position: relative;
        height: auto;
        flex: 0 0 100%;
        width: 100%;
    }
    .image_feature_box_right {
        position: relative;
        flex: 0 0 100%;
        width: 90%;
        aspect-ratio: 4 / 2;
    }
    .feature_box.left .empty-space {
        min-height: auto;
    }
    .feature_box_row {
        min-height: auto;
        width: 100%;
    }
    #feature_boxes li:not(:first-child) {
        display: initial;
    }
    #feature_boxes li:not(:first-child) .image_feature_box_right {
        border-bottom: 1px solid;
    }
    .feature_box.right .image_feature_box_right {
        border-right: 1px solid;
        border-left: none;
    }
    .feature_box.left .image_credit {
        left: 20px;
        right: auto;
    }
    #feature_boxes .image_credit {
        font-size: 10px;
    }
    .faq .accordion {
        font-size: 16px;
        line-height: 24px;
    }
    footer .container {
        justify-content: flex-start;
        text-align: left;
        flex-direction: column;
    }
    footer .container > .col-50 {
        width: 100%;
    }
    footer.footer .col-40 {
        width: 50%;
        flex: 0 0 50%;
    }
    .hero-container {
        max-width: calc(100% - 20px);
    }
    .contact-form-wrapper {
        margin: 0 auto;
        width: 100%;
    }
    .feature_box .feature_box_text {
        min-height: auto;
        margin-bottom: 0px;
        padding: 50px 0 !important;
    }
    .feature-section {
        padding: 70px 0 0;
    }
    .feature-header {
        margin-bottom: 70px;
    }
    #contact h2 {
        margin-bottom: 70px !important;
    }
    #contact {
        padding: 70px 0;
    }
    .partners {
        padding: 70px 0 90px;
    }
    
}

@media screen and (max-width: 768px) {
    footer .col-25:first-child:after {
        width: calc(100% + 40px);
        left: -20px;
    }
    .nav-menu,
    .localization {
        display: none;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 2.7rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }
    .container, .full-container {
        padding-right: 20px;
        padding-left: 20px;
    }
    nav.navbar .header__row:nth-child(2) {
        display: none;
    }
    .search-bar {
        display: none;
    }
    .shop-menu li:first-child {
        display: none;
    }
    .mobile-menu-sidebar {
        width: 90vw;
    }
    #contact .col-50 {
        width: 100%;
    }
    .hero-container {
        margin-left: 20px;
        margin-right: 20px;
    }
    h1 {
        font-size: 48px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 640px) {
    footer .col-25:nth-child(2), footer .col-25:nth-child(3), footer .col-25:nth-child(4) {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
    }
    footer .col-25:nth-child(3), footer .col-25:nth-child(4){
        padding: 0 0 40px;
    }
    .footer-bottom {
        height: 90px;
    }
    .footer-bottom .col-50 {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }
    .footer-bottom .col-50:last-child {
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }
    #newsletterForm {
        width: 100%;
    }
    form#newsletterForm input {
        min-width: calc(100% - 100px);
    }
    .feature_box.left .feature_box_text {
        margin-left: 0px;
    }
    .feature_box .feature_box_text {
        width: 90%;
    }
    input, textarea {
        min-width: 100%;
        width: 100%;
    }
    .contact-form {
        width: 100%;
    }
    footer .container > .col-50 {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    footer.footer .col-40 {
        width: 100%;
        flex: 0 0 100%;
    }
    .hero .cta-button {
        width: 100%;
        padding: 0;
    }
    h1 {
        font-size: 34px;
        line-height: 1.2;
    }
    .hero p {
        font-size: 14px;
    }
    .section-header h2 {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    section {
        padding: 60px 0;
    }
    #feature_boxes .image_credit {
        font-size: 8px;
    }

}








/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* CLS Prevention - Image dimensions */
img {
    height: auto;
    max-width: 100%;
}

/* Prevent layout shift for logos */
.logo-img {
    width: auto;
    height: 40px; /* Fixed height for consistency */
    object-fit: contain;
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-logo {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .logo-img {
        height: 35px; /* Slightly smaller on mobile */
    }
}

/* Prevent CLS for buttons */
.cta-button {
    min-height: 50px; /* Consistent button height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Prevent CLS for navigation */
.nav-menu {
    min-height: 40px;
}

/* Skeleton loading for images to prevent CLS */
.feature_box_image {
    background-color: #f0f0f0;
    min-height: 300px;
    position: relative;
}

.feature_box_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loading animation */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fade-in 0.8s ease-out;
}
