:root {
  /* Root – base profunda y terrosa */
  --mp-root: #352118;
  --mp-root-shade: #2C1B13; /* 15% más oscuro */
  --mp-root-tint:  #4E3C33; /* 15% más claro */

  /* Terracotta – arcilla cálida y artesanal */
  --mp-terracotta: #9D4F2B;
  --mp-terracotta-shade: #854325;
  --mp-terracotta-tint:  #B86C4A;

  /* Apricot – salmón suave y equilibrado */
  --mp-apricot: #EFC796;
  --mp-apricot-shade: #CBA980;
  --mp-apricot-tint:  #F3D3A8;

  /* Oat – neutro medio natural */
  --mp-oat: #B8A584;
  --mp-oat-shade: #9C8C70;
  --mp-oat-tint:  #C8B598;

  /* Honey – dorado luminoso y cálido */
  --mp-honey: #DCD972;
  --mp-honey-shade: #BFB95F;
  --mp-honey-tint:  #E3E18B;

  /* Lake – azul profundo y sereno */
  --mp-lake: #2F6684;
  --mp-lake-shade: #285670;
  --mp-lake-tint:  #4E7D96;

  /* Linen – base neutra clara */
  --mp-linen: #EFEEEA;
  --mp-linen-shade: #D0CFCC;
  --mp-linen-tint:  #F6F6F3;
}
/* Tipografía Principal */
@font-face {
    font-family: 'Primary Font';
    src: url('../assets/fonts/primary-regular.woff2') format('woff2'),
         url('../assets/fonts/primary-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Primary Font';
    src: url('../assets/fonts/primary-bold.woff2') format('woff2'),
         url('../assets/fonts/primary-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Tipografía Secundaria */
@font-face {
    font-family: 'Secondary Font';
    src: url('../assets/fonts/secondary-regular.woff2') format('woff2'),
         url('../assets/fonts/secondary-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Secondary Font';
    src: url('../assets/fonts/secondary-bold.woff2') format('woff2'),
         url('../assets/fonts/secondary-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - Light */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-Light.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-Light.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - Regular */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-Regular.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-Regular.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - Medium */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-Medium.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-Medium.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - SemiBold */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-SemiBold.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-SemiBold.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - Bold */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-Bold.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-Bold.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - ExtraBold */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-ExtraBold.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-ExtraBold.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Open Sauce One - Black */
@font-face {
    font-family: 'Open Sauce One';
    src: url('../assets/fonts/OpenSauceOne-Black.woff2') format('woff2'),
         url('../assets/fonts/OpenSauceOne-Black.woff') format('woff'),
         url('../assets/fonts/OpenSauceOne-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Variables de tipografía */
:root {
    --font-primary: 'Open Sauce One', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Secondary Font', Georgia, serif;
}
/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--mp-bg-primary);
    color: var(--mp-root);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* Section Spacing Utility */
.section-spacing {
    margin-top: 0;
    padding-top: 122px;
}

/* ========================================
   HEADER v2 - Logo Centered
   ======================================== */
.header--v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--mp-bg-header);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header__logo-img:hover {
    opacity: 0.8;
}

/* Responsive Header */
/* Mobile: 375x667px */
@media (max-width: 767px) {
    .header.header--v2 {
        height: 70px !important;
    }

    .header__container {
        padding: 0 26px;
        justify-content: flex-start;
    }

    .header__logo {
        justify-content: flex-start;
    }

    .header__logo-img {
        height: 35px;
    }
}

/* Tablet: 768x1024px */
@media (min-width: 768px) and (max-width: 1023px) {
    .header.header--v2 {
        height: 70px !important;
    }

    .header__container {
        padding: 0 54px;
        justify-content: flex-start;
    }

    .header__logo {
        justify-content: flex-start;
    }

    .header__logo-img {
        height: 40px;
    }
}

/* Desktop: 1024x768px (1512x982px) */
@media (min-width: 1024px) and (max-width: 1919px) {
    .header.header--v2 {
        height: 100px !important;
    }

    .header__container {
        padding: 0 40px;
        justify-content: center;
    }

    .header__logo {
        justify-content: center;
    }

    .header__logo-img {
        height: 50px;
    }
}

/* Desktop Large: 1920x1080px */
@media (min-width: 1920px) {
    .header.header--v2 {
        height: 100px !important;
    }

    .header__container {
        padding: 0 40px;
        justify-content: center;
    }

    .header__logo {
        justify-content: center;
    }

    .header__logo-img {
        height: 55px;
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--mp-root);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--mp-terracotta);
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    padding: 100px 0 0;
    overflow: hidden;
    background: var(--mp-linen);
}

.qodef-portfolio-slider {
    width: 100%;
    height: auto;
    position: relative;
}

.qodef-portfolio-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.qodef-portfolio-item {
    position: relative;
    width: 516px !important;
    height: 906px;
    flex-shrink: 0;
}

/* Responsive Slider Heights */
/* Mobile: 375x667px - slider full width, altura 660px */
@media (max-width: 767px) {
    .hero-slider-section {
        padding: 70px 0 0;
        height: calc(100vh - 70px);
        min-height: 660px;
    }

    .qodef-portfolio-slider {
        height: 100%;
    }

    .qodef-portfolio-item {
        width: 100vw !important;
        height: 660px !important;
    }
}

/* Tablet: 768x1024px - 3 slides, altura 415px */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-slider-section {
        padding: 70px 0 0;
    }

    .qodef-portfolio-item {
        width: 245px !important;
        height: 415px !important;
    }
}

/* Desktop: 1024px-1919px (1512x982px) - 3 completos + 2 parciales, 404x712px */
@media (min-width: 1024px) and (max-width: 1919px) {
    .hero-slider-section {
        padding: 100px 0 0;
    }

    .qodef-portfolio-item {
        width: 404px !important;
        height: 712px !important;
    }
}

/* Desktop Large: 1920x1080px - 3 completos + 2 parciales, 516x906px */
@media (min-width: 1920px) {
    .hero-slider-section {
        padding: 100px 0 0;
    }

    .qodef-portfolio-item {
        width: 516px !important;
        height: 906px !important;
    }
}

.qodef-e-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.qodef-e-media-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.qodef-portfolio-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.qodef-distort-img-clone {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qodef-item-filter-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.qodef-distort-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.qodef-portfolio-item:hover .qodef-distort-img {
    transform: scale(1.05);
}

/* Hover Content */
.qodef-e-content {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qodef-portfolio-item:hover .qodef-e-content {
    opacity: 1;
}

.qodef-e-top-holder {
    background: var(--mp-linen);
    padding: 6px 16px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    align-self: flex-start;
}

.qodef-category-tag {
    color: var(--mp-honey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.qodef-e-text {
    background: var(--mp-linen);
    padding: 8px 20px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    align-self: flex-start;
}

.qodef-e-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    white-space: nowrap;
}

.qodef-e-title-link {
    color: var(--mp-root);
    text-decoration: none;
    transition: color 0.3s;
}

.qodef-e-title-link:hover {
    color: var(--mp-honey);
}

.qodef-svg-distort-filter {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--mp-root);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    color: var(--mp-root);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--mp-root);
    color: var(--mp-linen);
}

.swiper-button-prev {
    left: 40px;
}

.swiper-button-next {
    right: 40px;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 20px;
    height: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Responsive Navigation Buttons */
/* Mobile: 375x667px */
@media (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .swiper-button-prev {
        left: 20px;
    }

    .swiper-button-next {
        right: 20px;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 16px;
        height: 16px;
    }
}

/* Tablet: 768x1024px */
@media (min-width: 768px) and (max-width: 1023px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .swiper-button-prev {
        left: 30px;
    }

    .swiper-button-next {
        right: 30px;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 18px;
        height: 18px;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .swiper-button-prev {
        left: 40px;
    }

    .swiper-button-next {
        right: 40px;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   HEADLINE + SERVICES SECTION
   ======================================== */
.headline-services-section {
    margin: 0 auto;
    padding: 122px 0 0 0;
    max-width: 1400px;
}

.headline-services-section .main-headline {
    font-size: inherit;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -1px;
    max-width: 900px;
    margin-bottom: 60px;
}

.headline-services-section .services-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 330px);
    gap: 47px 100px;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
    justify-self: end;
}

.headline-services-section .service-item {
    width: 330px;
}

.headline-services-section .service-item h3 {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.headline-services-section .service-item p {
    line-height: 1.8;
}

/* ========================================
   COMMON PLACEHOLDER STYLES
   ======================================== */
.placeholder-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img.circle {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.placeholder-img.large {
    height: 500px;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
}

.portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
}

/* Portfolio Items */
.portfolio-item .placeholder-img {
    border-radius: 0; /* Removed border radius */
    background: none; /* Removed yellow background */
    background-size: cover;
    background-position: center;
}

/* Corrected paths for portfolio item images */
.portfolio-item:nth-child(1) .placeholder-img {
    background-image: url('../assets/img/mp_img_01.png');
}

.portfolio-item:nth-child(2) .placeholder-img {
    background-image: url('../assets/img/mp_img_02.png');
}

.portfolio-item:nth-child(3) .placeholder-img {
    background-image: url('../assets/img/mp_img_03.png');
}

.portfolio-item:nth-child(4) .placeholder-img {
    background-image: url('../assets/img/mp_img_04.png');
}

.portfolio-item:nth-child(5) .placeholder-img {
    background-image: url('../assets/img/mp_img_05.png');
}

.portfolio-item:nth-child(6) .placeholder-img {
    background-image: url('../assets/img/mp_img_06.png');
}

.portfolio-item:nth-child(7) .placeholder-img {
    background-image: url('../assets/img/mp_img_07.png');
}

.portfolio-item:nth-child(8) .placeholder-img {
    background-image: url('../assets/img/mp_img_08.png');
}

/* ========================================
   INFO SECTION (Agency Info)
   ======================================== */
.info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 122px;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0 100px;
    align-items: start;
}

.info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.info-column h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--mp-root);
}

.info-column p,
.info-column ul,
.info-column li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 462px; /* Added max-width for the text */
}

.info-column p {
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--mp-root);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--mp-terracotta);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-column:nth-child(2) .service-list li,
.info-column:nth-child(3) .service-list li {
    margin-bottom: 10px;
}

.info-column:nth-child(2) .service-list li:last-child,
.info-column:nth-child(3) .service-list li:last-child {
    margin-bottom: 0;
}

/* ========================================
   EXCELLENCE SECTION
   ======================================== */
.excellence-section {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 122px;
}

.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.excellence-left h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -1px;
    max-width: 500px;
}

.excellence-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.skill-bar {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.skill-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mp-root);
}

.skill-percentage {
    font-size: 14px;
    font-weight: 700;
    color: var(--mp-root);
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: var(--mp-linen-shade);
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--mp-terracotta);
    border-radius: 0;
    width: 0;
    transition: width 1.5s ease-out;
}

/* ========================================
   SERVICES EXTENDED SECTION
   ======================================== */
.services-extended {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 122px;
}

.services-extended__title {
    margin-bottom: 20px;
}

.services-extended-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--mp-linen-shade);
}

.services-extended-list__item {
    list-style: none;
    display: grid;
    grid-template-columns: 357px 776px 280px;
    align-items: center;
    column-gap: 0;
    height: 128px;
    border-bottom: 1px solid var(--mp-linen-shade);
    padding: 0;
    position: relative;
    overflow: visible;
}

.services-extended-list__description {
    font-size: 16px;
    line-height: 1.5;
    padding-right: 40px;
}

.services-extended-list__title {
    margin: 0;
    padding: 0 40px;
}

.services-extended-list__link {
    display: inline-block;
    color: var(--mp-root);
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.services-extended-list__item:hover .services-extended-list__link {
    color: var(--mp-lake);
}

.services-extended-list__cta-wrapper {
    display: none;
    justify-content: flex-end;
    padding-left: 40px;
}

.services-extended-list__image {
    position: absolute;
    top: 50%;
    right: 13.2%;
    transform: translateY(-50%) scaleY(0) skewY(3deg);
    z-index: 11;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    width: 300px;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-extended-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-extended-list__item:hover .services-extended-list__image {
    opacity: 1;
    transform: translateY(-50%) scaleY(1) skewY(0deg);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--mp-linen);
    margin-top: 0; /* Removed margin to make it flush with previous section */
}

.footer__top {
    padding: 80px 0;
    border-bottom: 1px solid var(--mp-linen-shade);
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--mp-root);
    margin: 0;
}

.footer__heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mp-root);
    margin-bottom: 20px;
}

.footer__address,
.footer__contact {
    font-size: 17px;
    line-height: 1.8;
    font-style: normal;
}

.footer__address a,
.footer__contact a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__address a {
    color: var(--mp-terracotta);
    position: relative;
    display: inline-block;
}

.footer__address a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--mp-terracotta);
    transition: width 0.3s ease;
}

.footer__address a:hover {
    color: var(--mp-root);
}

.footer__address a:hover::after {
    width: 100%;
    background-color: var(--mp-root);
}

.footer__team-member {
    line-height: 1.8;
}

.footer__team-name {
    font-size: 17px;
    font-weight: 500;
    color: var(--mp-root);
}

.footer__team-member a {
    color: var(--mp-root);
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer__team-member a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--mp-terracotta);
    transition: width 0.3s ease;
}

.footer__team-member a:hover {
    color: var(--mp-terracotta);
}

.footer__team-member a:hover::after {
    width: 100%;
}

.footer__bottom {
    padding: 0;
}

.footer__bottom-inner {
    padding: 9px 80px 8px;
    border-top: 1px solid var(--mp-terracotta);
}

.footer__bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}

.footer__social {
    display: flex;
    gap: 0;
    align-items: center;
}

.footer__social a {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-root);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
    padding: 0 15px;
}

.footer__social a:first-child {
    padding-left: 0;
}

.footer__social a:hover {
    background: transparent;
    color: var(--mp-root);
}

.footer__copyright {
    text-align: right;
}

.footer__copyright p {
    font-size: 14px;
    margin: 0;
}

.footer__copyright a {
    color: var(--mp-root);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer__copyright a:hover {
    color: var(--mp-terracotta);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1 {
    font-size: 52px !important;
}

h2 {
    font-size: 52px !important;
    line-height: 1.2;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 16px;
}

/* ========================================
   SLIDER HOVER STYLES
   ======================================== */
.slider-hover-tooltip {
    width: auto;
    min-width: 11rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.125rem;
}

.slider-hover-text-primary {
    height: 2rem;
    padding: 0.25rem 1.25rem;
    background-color: var(--mp-linen);
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
}

.slider-hover-text-primary > div {
    justify-content: flex-start;
    color: var(--mp-terracotta);
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.12em;
}

.slider-hover-text-secondary {
    align-self: stretch;
    height: 2rem;
    padding: 0.25rem 1.25rem;
    background-color: var(--mp-linen);
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
}

.slider-hover-text-secondary > div {
    justify-content: flex-start;
    color: var(--mp-root);
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Noto Serif', serif;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 767px) {
    .container {
        padding: 0 26px;
    }

    .headline-services-section {
        padding: 0 26px;
        margin: 60px auto;
    }

    .headline-services-section .main-headline {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .headline-services-section .services-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 26px;
    }

    .info-section {
        padding-top: calc(122px * 0.5);
        padding-left: 26px;
        padding-right: 26px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .footer__container {
        padding: 0 26px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__title {
        font-size: 28px;
    }

    .footer__bottom-inner {
        padding: 9px 26px 8px;
    }

    .footer__bottom-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__copyright {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 54px;
    }

    .headline-services-section {
        padding: 0 54px;
    }

    .headline-services-section .main-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .headline-services-section .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }

    .portfolio-grid-8 {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 54px;
    }

    .info-section {
        padding-top: calc(122px * 0.7);
        padding-left: 54px;
        padding-right: 54px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 60px;
    }

    .footer__container {
        padding: 0 54px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__column:first-child {
        grid-column: 1 / -1;
    }

    .footer__title {
        font-size: 36px;
    }

    .footer__bottom-inner {
        padding: 9px 54px 8px;
    }
}

@media (min-width: 1024px) {
    .headline-services-section .main-headline {
        font-size: inherit;
        margin-bottom: 60px;
    }

    .headline-services-section .services-grid-4 {
        grid-template-columns: repeat(2, 330px);
        gap: 47px 100px;
    }

    .portfolio-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   DECORATIVE VIDEO SECTION
   ======================================== */
.decorative-video-section {
    padding-top: 122px;
    max-width: 100%; /* Full width */
    width: 100%;
}

.decorative-video-container {
    width: 100%;
    height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decorative-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive heights */
/* Mobile: 375x667px */
@media (max-width: 767px) {
    .decorative-video-section {
        padding-top: calc(122px * 0.5);
    }
    .decorative-video-container {
        height: 250px;
    }
}

/* Tablet: 768x1024px */
@media (min-width: 768px) and (max-width: 1023px) {
    .decorative-video-section {
        padding-top: calc(122px * 0.7);
    }
    .decorative-video-container {
        height: 400px;
    }
}

/* Desktop: 1024px-1919px */
@media (min-width: 1024px) and (max-width: 1919px) {
    .decorative-video-section {
        padding-top: calc(122px * 0.85);
    }
    .decorative-video-container {
        height: 550px;
    }
}

/* Desktop Large: 1920px+ */
@media (min-width: 1920px) {
    .decorative-video-section {
        padding-top: 122px;
    }
    .decorative-video-container {
        height: 650px;
    }
}

/* ========================================
   WHAT WE DO SECTION
   ======================================== */
.what-we-do-section {
    max-width: 100%;
    width: 100%;
    padding-top: 0;
}

.what-we-do-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    height: 792px;
}

.what-we-do-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.what-we-do-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.what-we-do-content {
    background-color: var(--mp-honey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    height: 100%;
}

.what-we-do-text {
    max-width: 540px;
}

.what-we-do-subtitle {
    display: block;
    color: var(--mp-root);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.8;
}

.what-we-do-title {
    color: var(--mp-root);
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.what-we-do-description {
    color: var(--mp-root);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.9;
}

.what-we-do-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 2px solid var(--mp-root);
    color: var(--mp-root);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.what-we-do-button:hover {
    background-color: var(--mp-root);
    color: var(--mp-honey);
}

.what-we-do-button-arrow {
    display: inline-flex;
    width: 11.19px;
    height: 11.19px;
    transition: transform 0.3s ease;
}

.what-we-do-button:hover .what-we-do-button-arrow {
    transform: translate(2px, -2px);
}

.what-we-do-button-arrow svg {
    width: 100%;
    height: 100%;
}

/* Responsive What We Do Section */
/* Mobile: 375x667px */
@media (max-width: 767px) {
    .what-we-do-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .what-we-do-image {
        height: 280px;
        order: 1;
    }

    .what-we-do-content {
        padding: 50px 26px;
        order: 2;
        height: auto;
    }

    .what-we-do-text {
        max-width: 100%;
    }

    .what-we-do-subtitle {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .what-we-do-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .what-we-do-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }
}

/* Tablet: 768x1024px */
@media (min-width: 768px) and (max-width: 1023px) {
    .what-we-do-container {
        height: 520px;
    }

    .what-we-do-content {
        padding: 60px 54px;
    }

    .what-we-do-text {
        max-width: 100%;
    }

    .what-we-do-subtitle {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .what-we-do-title {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .what-we-do-description {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .what-we-do-button {
        padding: 13px 28px;
    }
}

/* Desktop: 1024px-1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .what-we-do-container {
        height: 600px;
    }

    .what-we-do-content {
        padding: 70px 50px;
    }

    .what-we-do-text {
        max-width: 480px;
    }

    .what-we-do-title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .what-we-do-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* Desktop: 1440px-1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
    .what-we-do-container {
        height: 700px;
    }

    .what-we-do-content {
        padding: 75px 55px;
    }

    .what-we-do-text {
        max-width: 520px;
    }

    .what-we-do-title {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .what-we-do-description {
        font-size: 17px;
        margin-bottom: 44px;
    }
}

/* Desktop Large: 1920px+ */
@media (min-width: 1920px) {
    .what-we-do-container {
        height: 792px;
    }

    .what-we-do-content {
        padding: 80px 60px;
    }

    .what-we-do-text {
        max-width: 540px;
    }

    .what-we-do-title {
        font-size: 52px;
        margin-bottom: 32px;
    }

    .what-we-do-description {
        font-size: 17px;
        margin-bottom: 48px;
    }
}

/* ========================================
   HOW WE WORK SECTION
   ======================================== */
.how-we-work-section {
    max-width: 100%;
    width: 100%;
    padding-top: 122px;
}

.how-we-work-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    height: 792px;
}

.how-we-work-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.how-we-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-we-work-content {
    background-color: var(--mp-honey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    height: 100%;
}

.how-we-work-text {
    max-width: 540px;
}

.how-we-work-subtitle {
    display: block;
    color: var(--mp-root);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.8;
}

.how-we-work-title {
    color: var(--mp-root);
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.how-we-work-description {
    color: var(--mp-root);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.9;
}

/* Responsive How We Work Section */
/* Mobile: 375x667px */
@media (max-width: 767px) {
    .how-we-work-section {
        padding-top: calc(122px * 0.5);
    }

    .how-we-work-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .how-we-work-image {
        height: 280px;
        order: 1;
    }

    .how-we-work-content {
        padding: 50px 26px;
        order: 2;
        height: auto;
    }

    .how-we-work-text {
        max-width: 100%;
    }

    .how-we-work-subtitle {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .how-we-work-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .how-we-work-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }
}

/* Tablet: 768x1024px */
@media (min-width: 768px) and (max-width: 1023px) {
    .how-we-work-section {
        padding-top: calc(122px * 0.7);
    }

    .how-we-work-container {
        height: 520px;
    }

    .how-we-work-content {
        padding: 60px 54px;
    }

    .how-we-work-text {
        max-width: 100%;
    }

    .how-we-work-subtitle {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .how-we-work-title {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .how-we-work-description {
        font-size: 16px;
        margin-bottom: 36px;
    }
}

/* Desktop: 1024px-1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .how-we-work-section {
        padding-top: calc(122px * 0.85);
    }

    .how-we-work-container {
        height: 600px;
    }

    .how-we-work-content {
        padding: 70px 50px;
    }

    .how-we-work-text {
        max-width: 480px;
    }

    .how-we-work-title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .how-we-work-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* Desktop: 1440px-1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
    .how-we-work-container {
        height: 700px;
    }

    .how-we-work-content {
        padding: 75px 55px;
    }

    .how-we-work-text {
        max-width: 520px;
    }

    .how-we-work-title {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .how-we-work-description {
        font-size: 17px;
        margin-bottom: 44px;
    }
}

/* Desktop Large: 1920px+ */
@media (min-width: 1920px) {
    .how-we-work-container {
        height: 792px;
    }

    .how-we-work-content {
        padding: 80px 60px;
    }

    .how-we-work-text {
        max-width: 540px;
    }

    .how-we-work-title {
        font-size: 52px;
        margin-bottom: 32px;
    }

    .how-we-work-description {
        font-size: 17px;
        margin-bottom: 48px;
    }
}
.button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 8px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
}