@font-face {
    font-family: 'Libre Baskerville';
    src: url('../fonts/LibreBaskerville-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Libre Baskerville', serif;
    background-color: #faf9f6;
    color: #1a1a1a;
}


.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.home-link {
    cursor: pointer;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    line-height: 1;
}

.logo-mg-text {
    color: white;
    background-color: #014F30;
    font-size: 1.4rem;
    border-radius: 5px;
    padding: 5px;
    transition: color 0.3s;
}

.logo-mg-text {
    color: white;
}

.burger {
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.burger .bar {
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background-color: white;
    transition: all 0.4s ease;
}

.burger .bar:nth-child(1) {
    top: 10px;
}

.burger .bar:nth-child(2) {
    top: 18px;
}

.burger .bar:nth-child(3) {
    top: 26px;
}

.burger.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
}

.burger.open .bar:nth-child(2) {
    opacity: 0;
}

.burger.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
}

.dropdown-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #faf9f6;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 3rem;
    z-index: 999;
    overflow-y: auto;
    scroll-behavior: smooth;
}


.dropdown-menu.active {
    max-height: 500px;
    padding: 6rem 3rem 2rem;
    border-top: 1px solid #ddd;
}

.menu-section {
    flex: 1 1 0;
    max-width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 1.2rem;
}

.menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.menu-section h4 {
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.2rem;
    font-family: 'Libre Baskerville', serif;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
}

.menu-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background-color: #7d5a4f;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-section h4:hover {
    color: #7d5a4f;
}

.menu-section h4:hover::after {
    width: 100%;
}

.navbar.scrolled,
.navbar.menu-open {
    background-color: #faf9f6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo-text ,
.navbar.menu-open .logo-text {
    color: #1a1a1a;
}

.navbar.scrolled .burger .bar,
.navbar.menu-open .burger .bar {
    background-color: #1a1a1a;
}

.menu-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.footer {
    margin-top: auto;
    background-color: #faf9f6;
    border-top: 1px solid #ddd;
    padding: 0.5rem 2rem;
    font-family: 'Libre Baskerville', serif;
    text-align: center;
    color: #1a1a1a;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer p {
    color: #868992;
    font-size: 0.7rem;
}

.footer .social-icons a {
    margin: 0 0.5rem;
    color: #1a1a1a;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #7d5a4f;
}

.hero {
    position: relative;
    height: 100vh;
    background-image: url('../images/home_renaissance.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


.parallax {
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #faf9f6;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 300;
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid white;
    white-space: nowrap;
    animation: typing 3s steps(18), blink 0.75s step-end infinite;
    font-size: 4rem;
    letter-spacing: 2px;
}

.hero-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border: 1px solid #faf9f6;
    color: #faf9f6;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: transparent;
    border-radius: 2rem;
}

.hero-button:hover {
    background-color: #faf9f6;
    color: #1a1a1a;
    cursor: pointer;
}

.about-hero {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
}

.about-hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.about-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    font-family: 'Libre Baskerville', serif;
}

/* Animations */
@keyframes fadeInUp {
 0% {
   opacity: 0;
   transform: translateY(30px);
 }
 100% {
   opacity: 1;
   transform: translateY(0);
 }
}
.animate-fade-up {
 opacity: 0;
 animation: fadeInUp 1s ease forwards;
 animation-delay: 0.2s;
}
.fade-container {
 animation: fadeInUp 1s ease forwards;
}
.madagascar-overlay-section {
 position: relative;
 background-image: url('../images/madagascar-skyview.jpg');
 background-size: cover;
 background-position: center;
 padding: 4rem 2rem;
 margin-bottom: 3rem;
 color: #fff;
 text-align: center;
 z-index: 1;
}
.madagascar-overlay-section::before {
 content: "";
 position: absolute;
 inset: 0;
 background: rgba(0, 0, 0, 0.589);
 z-index: 0;
}
.madagascar-overlay-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
 margin: 0 auto;
}
.madagascar-overlay-content h2 {
 font-family: 'Playfair Display', serif;
 font-size: 2rem;
 margin-bottom: 1rem;
 color: #fff;
}
.madagascar-overlay-content p {
 font-size: 1.15rem;
 line-height: 1.7;
 color: #f5f5f5;
 font-family: 'Libre Baskerville', serif;
}

/* HERO SECTION */
.products-hero {
    position: relative;
    height: 50vh;
    background-color: #f5f5f5;
    overflow: hidden;
}

.products-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* PRODUCT SECTION */
.products-header {
    max-width: 1200px;
    width: 92vw;
    margin: 0 auto 3rem;
    text-align: center;
}

.products-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    margin-top: 4rem;
    letter-spacing: 1px;
}

.products-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.products-header p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.product-carousel-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.product-carousel {
    display: flex;
    height: 100%;
    transform: translateX(0%);
    transition: transform 0.4s ease;
    will-change: transform;
}
.carousel-item {
    flex: 0 0 100%;
    height: 100%;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.carousel-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.product-type {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 2rem;
    background-color: #faf9f6;
}

.product-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-block.reverse {
    flex-direction: row-reverse;
}

.product-img {
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.product-text {
    width: 50%;
    font-family: 'Playfair Display', serif;
}

.product-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #7d5a4f;
}

.product-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* CONTACT HERO */
.contact-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* FORM SECTION */
.contact-form-section {
    background-color: #f8f4f1;
    padding: 3.5rem 1.5rem 2.5rem 1.5rem;
    max-width: 1400px;
    width: 100%;
    margin: 3rem auto 3rem auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-form-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: #7d5a4f;
}

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

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
    box-sizing: border-box;
}

.submit-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    background-color: #7d5a4f;
    color: white;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #63463d;
}

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* 2. Section wrapper */
  .contact-form-section {
    background-color: #f8f4f1;
    padding: 3.5rem 1.5rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* 3. Intro text */
  .contact-intro {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }
  .contact-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
  }
  .contact-intro .subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #7d5a4f;
    margin-bottom: 1.1rem;
  }
  .contact-intro .description {
    font-size: 1.13rem;
    color: #4a4a4a;
    margin: 0 auto 2.5rem;
    max-width: 700px;
    line-height: 1.6;
  }

  /* 4. Flex container */
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 5. Form & Info cards */
  .contact-column {
    flex: 1 1 340px;
    min-width: 0;
    max-width: 500px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  /* 6. Form styling */
  .contact-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #7d5a4f;
    margin-bottom: 1.3rem;
    text-align: left;
  }
  .contact-form {
    width: 100%;
  }
  .form-group {
    margin-bottom: 1.1rem;
  }
  .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  .submit-btn {
    background: #7d5a4f;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.8rem 0;
    border: none;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    margin-top: 0.5rem;
  }

  /* 7. Contact info & map cards */
  .contact-info-container {
    gap: 2.2rem;
    display: flex;
    flex-direction: column;
  }
  .contact-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 2.2rem 2rem;
    margin-bottom: 1.2rem;
  }
  .contact-card:last-child {
    margin-bottom: 0;
  }
  .contact-card .info-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.08rem;
    color: #1a1a1a;
  }
  .contact-card .info-item i {
    color: #7d5a4f;
    font-size: 1.1rem;
  }
  .contact-card img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }


@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 18ch;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .typewriter {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .dropdown-menu {
        top: 56px;
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        flex-wrap: nowrap;
    }

    .menu-section {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        margin-left: 0;
        padding: 0;
    }

    .menu-link {
        width: 100%;
    }

    .menu-section h4 {
        text-align: left;
    }

    .menu-section a {
        padding-left: 0.5rem;
    }

    .menu-section:not(:last-child) {
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-hero {
        height: 60vh;
    }

    .contact-hero-img {
        object-position: center;
    }

    .contact-form-section {
        padding: 3rem 1.5rem;
    }

    .contact-form-section h1 {
        font-size: 2rem;
    }

    .form-intro {
        font-size: 0.95rem;
    }

    .carousel-caption h3 {
    font-size: 1.5rem;
    }

    .carousel-caption p {
    font-size: 1rem;
    }

    .fade-container h2 {
        font-size: 1.2rem!important;
    }

    .fade-container a {
        font-size: 0.8rem!important;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-mg-text {
        font-size: 1rem;
        border-radius: 3px;
        padding: 3px;
    }

    .navbar {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .burger {
        width: 32px;
        height: 32px;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

    .typewriter {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .dropdown-menu {
        top: 56px;
        padding: 0 1rem;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    .menu-section {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        margin-left: 0;
        padding: 0;
    }

    .menu-link {
        width: 100%;
    }

    .menu-section h4 {
        text-align: left;
    }

    .menu-section a {
        padding-left: 0.5rem;
    }

    .menu-section:not(:last-child) {
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-hero {
        height: 50vh;
    }

    .contact-form-section h1 {
        font-size: 1.75rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.7rem 0.9rem;
    }

    .submit-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 2.2rem;
    align-items: stretch;
  }
  .contact-column {
    max-width: 100%;
    min-width: 0;
  }
  .wdu-row {
    flex-direction: column;
    min-height: 0;
    height: auto;
    padding: 2.5rem 0 2.5rem 0;
    align-items: stretch;
  }
  .wdu-row .wdu-img {
    order: 1 !important;
    padding: 0 !important;
    max-width: 100vw;
    width: 100%;
    min-height: 180px;
    height: 220px;
  }
  .wdu-row .wdu-text {
    order: 2 !important;
    padding: 0 1.2rem !important;
    max-width: 100vw;
    width: 100%;
    text-align: center !important;
    min-height: unset;
  }
}

@media (max-width: 600px) {
  .contact-intro h1 {
    font-size: 1.3rem;
  }
  .contact-intro .subheading {
    font-size: 1rem;
  }
  .contact-intro .description {
    font-size: 0.95rem;
  }
  .contact-form-container h2 {
    font-size: 1.1rem;
  }
  .contact-card {
    padding: 1.2rem 0.7rem;
  }
  .contact-card .info-item {
    font-size: 0.93rem;
    word-break: break-all;
  }
  .contact-card img {
    max-width: 100%;
  }
  .modern-card-img {
    height: 60px;
    margin-bottom: 0.7rem;
  }
}

.values-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* overflow-x: hidden;
  margin-left: -50vw;
  left: 50%;
  position: relative; */
}
.values-cards {
  display: flex;
  justify-content: center;
  gap: 0;
  box-shadow: 0 6px 24px rgba(125,90,79,0.07), 0 1.5px 6px rgba(125,90,79,0.04);
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.value-card {
  border-radius: 0;
  box-shadow: none;
  padding: 4.5rem 2.2rem;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  border: none;
  min-width: 0;
  width: 33.3%;
  position: relative;
  z-index: 1;
  height: 600px;
  min-height: 200px;
  overflow: hidden;
  word-break: break-word;
  text-align: center;
}
.value-card span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  white-space: normal;
  text-align: center;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  margin-bottom: 5rem;
}
.value-desc {
    color: white;
}
.value-desc-list {
    color: white;
    list-style: none;
    margin: unset;
    padding: unset;
}
.value-card:nth-child(3) {
  background: linear-gradient(135deg, #bfae9c 60%, #8c7a6b 100%);
}
.value-card:nth-child(2) {
  background: linear-gradient(135deg, #f7f3f0 60%, #d6cfc7 100%);
}
.value-card:nth-child(1) {
  background: linear-gradient(135deg, #014F30 60%, #7d5a4f 100%);
}
.value-card span {
  color: #fff;
}
.value-card:nth-child(2) span {
  color: #7d5a4f;
  text-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.value-card:nth-child(2) .value-desc {
  color: #7d5a4f;
  text-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.value-card:hover, .value-card:focus {
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 10px 28px rgba(125,90,79,0.13), 0 2px 8px rgba(125,90,79,0.07);
}


@media (max-width: 1400px) {
  .value-card span {
    font-size: 1.2rem;
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 900px) {
  .value-card {
    padding: 2.5rem 1rem;
    font-size: 1.2rem;
    height: auto;
    word-break: break-word;
  }
  .values-section, .values-cards {
    width: 100%;
    max-width: 100vw;
  }
  .vmv-title {
    font-size: 1.5rem!important;
  }
}

@media (max-width: 600px) {
  .values-section {
    width: 100%;
  }
  .values-cards {
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(125,90,79,0.09);
    width: 100%;
    max-width: 100%;
  }
  .value-card {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    padding: 2.2rem 0.7rem;
    word-break: break-word;
  }
  .value-card span {
    font-size: 1.2rem;
    white-space: normal;
    word-break: break-word;
    margin-bottom: 2rem;
  }

  .value-desc {
    font-size: 0.8rem;
  }
  .value-desc-list li{
    font-size: 0.8rem;
  }
  .value-card:not(:last-child) {
    border-bottom: 2px solid rgba(255,255,255,0.12);
  }
}

.what-defines-us {
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
  background: #faf9f6;
  padding: 0 0 2rem 0;
}
.what-defines-us h2 {
  margin-top: 10rem;
  margin-bottom: 3.5rem;
}
.wdu-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto 0 auto;
  padding: 0;
  min-height: 50vh;
  height: 50vh;
  box-sizing: border-box;
  position: relative;
}
.wdu-text {
  flex: 1 1 50%;
  max-width: 50vw;
  min-width: 220px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3vw;
}
.wdu-img {
  flex: 1 1 50%;
  max-width: 50vw;
  min-width: 200px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}
.wdu-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(125,90,79,0.09), 0 1.5px 6px rgba(125,90,79,0.04);
  background: #fff;
  display: block;
}
@media (max-width: 1100px) {
  .wdu-row.left-align .wdu-text, .wdu-row.right-align .wdu-text {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media (max-width: 900px) {
  .wdu-row {
    flex-direction: column;
    min-height: 0;
    height: auto;
    padding: 2.5rem 0 2.5rem 0;
    align-items: stretch;
  }
  .wdu-row .wdu-img {
    order: 1 !important;
    padding: 0 !important;
    max-width: 100vw;
    width: 100%;
    min-height: 180px;
    height: 220px;
  }
  .wdu-row .wdu-text {
    order: 2 !important;
    padding: 0 1.2rem !important;
    max-width: 100vw;
    width: 100%;
    text-align: center !important;
    min-height: unset;
  }
  .modern-card-img {
    display: block;
    margin: 0 auto 1.1rem auto;
    height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(125,90,79,0.08);
    background: #f6f6f2;
    }
}
@media (max-width: 600px) {
  .contact-intro h1 {
    font-size: 1.3rem;
  }
  .contact-intro .subheading {
    font-size: 1rem;
  }
  .contact-intro .description {
    font-size: 0.95rem;
  }
  .contact-form-container h2 {
    font-size: 1.1rem;
  }
  .contact-card {
    padding: 1.2rem 0.7rem;
  }
  .contact-card .info-item {
    font-size: 0.93rem;
    word-break: break-all;
  }
  .contact-card img {
    max-width: 100%;
  }
  .modern-card-img {
    height: 60px;
    margin-bottom: 0.7rem;
  }
}

/* Firenze Gallery Carousel Styles - Modern & Larger */
.firenze-gallery-section {
  background: #f7f7f7;
  padding: 80px 0 64px 0;
  text-align: center;
}
.firenze-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  margin-bottom: 40px;
  color: #1a2d1a;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.firenze-gallery-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-arrow {
  background: rgba(26,45,26,0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2.1rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(1,79,48,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-arrow:hover {
  background: #014F30;
  box-shadow: 0 8px 32px rgba(1,79,48,0.18);
  transform: scale(1.08);
}
.gallery-image-wrapper {
  position: relative;
  width: 800px;
  height: 1000px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(1,79,48,0.13), 0 2px 8px rgba(1,79,48,0.07);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.gallery-image-wrapper:hover {
  box-shadow: 0 16px 64px rgba(1,79,48,0.18), 0 4px 16px rgba(1,79,48,0.10);
}
.gallery-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(1,79,48,0.08);
}
.gallery-image.active {
  opacity: 1;
  z-index: 2;
}
@media (max-width: 1100px) {
  .gallery-image-wrapper { width: 90vw; height: 90vw; min-height: 260px; max-width: 98vw; }
  .firenze-gallery-carousel { gap: 12px; }
}
@media (max-width: 700px) {
  .firenze-gallery-title { font-size: 1.5rem; }
  .gallery-image-wrapper { width: 98vw; height: 90vw; min-height: 180px; max-width: 100vw; border-radius: 18px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
}

/* Alternating Product Sections */
.products-alt-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  overflow-x: hidden;
}
.product-alt-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100vw;
  max-width: 100vw;
  min-height: 380px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.product-alt-row.left-align .product-alt-img { order: 1; }
.product-alt-row.left-align .product-alt-text { order: 2; }
.product-alt-row.right-align .product-alt-img { order: 2; }
.product-alt-row.right-align .product-alt-text { order: 1; }
.product-alt-img {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f2;
  overflow: hidden;
}
.product-alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
  max-height: 420px;
  border-radius: 0;
}
.product-alt-text {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3.5rem 3rem;
  background: #fff;
  box-sizing: border-box;
}
.product-alt-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #014F30;
  margin-bottom: 1rem;
  font-weight: 700;
}
.product-alt-text p {
  font-size: 1.13rem;
  color: #333;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .product-alt-row {
    flex-direction: column !important;
  }
  .product-alt-img {
    order: 1 !important;
  }
  .product-alt-text {
    order: 2 !important;
  }
  .parallax {
    background-attachment: unset;
  }
}

/* Product Modal Styles */
.product-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 20, 0.38);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.product-modal.active {
  display: flex;
}
.product-modal-content {
  background: #fff;
  border-radius: 2.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 540px;
  width: 90vw;
  min-width: 320px;
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalIn 0.18s cubic-bezier(.4,1.4,.6,1) 1;
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.97); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.product-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #7d5a4f;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.15s;
  z-index: 2;
}
.product-modal-close:hover {
  color: #014F30;
}
.modal-carousel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.modal-carousel-slide {
  display: none;
  font-size: 1.18rem;
  font-family: 'Playfair Display', serif;
  color: #222;
  text-align: center;
  min-width: 220px;
  max-width: 320px;
  padding: 1.2rem 1.5rem;
  background: #f7f7f7;
  border-radius: 1.1rem;
  box-shadow: 0 2px 8px rgba(1,79,48,0.07);
}
.modal-carousel-slide.active {
  display: flex;
}
.modal-carousel-prev,
.modal-carousel-next {
  background: #014F30;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.modal-carousel-prev:disabled,
.modal-carousel-next:disabled {
  background: #bdbdbd;
  cursor: not-allowed;
}
.modal-carousel-prev:hover:not(:disabled),
.modal-carousel-next:hover:not(:disabled) {
  background: #7d5a4f;
}
@media (max-width: 600px) {
  .product-modal-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 98vw;
    min-width: 0;
  }
  .modal-carousel-slide {
    font-size: 1rem;
    min-width: 120px;
    max-width: 90vw;
    padding: 0.7rem 0.5rem;
  }
}

.product-view-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #014F30;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(1,79,48,0.07);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  outline: none;
}
.product-view-btn:hover, .product-view-btn:focus {
  background: #7d5a4f;
  color: #fff;
  box-shadow: 0 4px 16px rgba(1,79,48,0.13);
  transform: translateY(-1px) scale(1.03);
}
@media (max-width: 600px) {
  .product-view-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

.wdu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
.wdu-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(1,79,48,0.07);
  padding: 2.1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 210px;
  transition: box-shadow 0.18s, transform 0.13s;
  border: 1px solid #f2ede7;
}
.wdu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: #014F30;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.wdu-card p {
  font-size: 1rem;
  color: #7d5a4f;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.6;
  margin: 0;
}
.wdu-card:hover {
  box-shadow: 0 8px 32px rgba(1,79,48,0.13);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 700px) {
  .wdu-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.2rem;
  }
  .wdu-card {
    padding: 1.2rem 0.8rem 1.2rem 0.8rem;
    min-height: 0;
  }
}