/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #842211;
    background-image: url('/assets/img/bg-preloader.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* pulse animation for background */
    animation: pulse-bg 2.5s ease-in-out infinite;
    transform-origin: center center;
}

.preloader-content {
    text-align: center;
    transform: translateY(10vh);
}

.preloader-logo {
    width: 150px;
    margin-bottom: 30px;
    /* Filtro para aproximar el color #ffdc64 (Amarillo/Oro) */
    filter: brightness(0) saturate(100%) invert(87%) sepia(21%) saturate(2206%) hue-rotate(345deg) brightness(101%) contrast(102%);
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid #91593c;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

body.no-scroll {
    overflow: hidden;
}

@keyframes spin {
    0% {
        transform: rotate(0x);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Background pulse for #preloader to give a subtle heartbeat effect */
@keyframes pulse-bg {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: rgb(35, 3, 14, .15);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out;
}

/* Lenis Smooth Scroll Support */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #d4af37;
    /* Gold/Champagne */
    --bg-dark: #23030e;
    --text-light: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 90px;
    --header-height-scrolled: 70px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Pseudo-elemento para el fondo que permite el fade suave */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    background-image: url('/assets/img/bgtop.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    /* Invisible por defecto */
    transition: var(--transition-smooth);
    z-index: -1;
}

.main-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.main-header.scrolled::before {
    opacity: 1;
    /* Aparece suavemente al hacer scroll */
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    width: 33.33%;
}

.nav-links.left-links {
    justify-content: flex-end;
}

.nav-links.right-links {
    justify-content: flex-start;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Active link style — coincide con el estado :hover */
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a.active::after {
    width: 100%;
}

.mobile-nav-links li a.active {
    color: var(--primary-color);
}

/* Logo */
.logo {
    width: 33.33%;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.scrolled .logo img {
    height: 45px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
}

.mobile-nav-links li a {
    color: var(--text-light);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.mobile-nav-links li a:hover {
    color: var(--primary-color);
}

/* Animations */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo {
        position: relative;
        left: 0;
        transform: none;
        order: 1;
    }

    .logo img {
        height: 65px;
    }

    .mobile-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        justify-content: space-between;
        padding: 0 20px;
    }
}

.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.active span:nth-child(2) {
    opacity: 0;
}

.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.no-scroll {
    overflow: hidden;
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.slide-content {
    width: 100%;
    height: 130%;
    /* Aumentado para un parallax más pronunciado */
    position: absolute;
    top: -15%;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay oscuro para mejorar legibilidad */
}

.slide-content .container {
    position: relative;
    z-index: 2;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Swiper Customize Bullets (Bottom Right) */
.heroSwiper .swiper-pagination-bullets {
    bottom: 50px !important;
    left: auto !important;
    right: 50px !important;
    width: auto !important;
    display: flex;
    gap: 15px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: var(--transition-smooth);
}

.scroll-down:hover {
    color: var(--primary-color);
    transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* History Section */
.history-scroll-container {
    background-color: #fffdef;
    position: sticky;
    top: 0;
    width: 100%;
    height: 200vh;
    z-index: 1;
}

.history-sticky-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.history-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 0 5%;
    gap: 20px;
}

.history-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    padding-top: var(--header-height);
}

.history-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
    padding-top: calc(var(--header-height) + 60px);
    /* Compensamos el menú y bajamos 60px más */
}

.history-center {
    flex: 1.2;
    text-align: center;
    z-index: 5;
    padding-top: var(--header-height);
}

.history-video-container {
    height: calc(100vh - var(--header-height));
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.history-video {
    height: 100%;
    width: auto;
    display: block;
}

.history-img-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.history-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.history-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.history-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #443c30;
    /* Un tono café/gris oscuro para el fondo claro */
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive History */
@media (max-width: 991px) {
    .history-content {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
    }

    .history-scroll-container {
        height: 120vh;
    }

    .history-title {
        font-size: 3rem;
    }

    .history-video-container,
    .history-img-container {
        max-width: 300px;
    }
}

/* Video Background Section - REVEAL EFFECT */
.video-bg-section {
    position: relative;
    width: 100%;
    height: auto;
    /* Pantalla completa para que tape totalmente */
    overflow: hidden;
    z-index: 2;
    /* Capa superior para tapar la historia */
    /* box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8); */
    /* Sombra intensa para dar profundidad */
}

.cacao-native-info {
    background-color: #fffdef;
    /* Coherencia con la sección Historia */
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;

    & .cacaoleft {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 30%;
    }

    & .cacaoright {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 30%;
    }
}

.video-container {
    position: relative;
    padding: 0;
    ;
    width: 100%;
    height: auto;
    /* background-image: url('/assets/img/bgvideo.webp'); */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;

    & video {
        aspect-ratio: 16 / 9;
        width: 100%;
        max-height: 100vh;
        will-change: transform;
        transform: translateZ(0);
    }
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay para oscurecer el parallax y que el menú transparente destaque */
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, #000 0%, rgba(35, 3, 14, 0) 50%);
    pointer-events: none;
    z-index: 0;
}

/* Asegurar que el contenido de la sección quede por encima del overlay */
.parallax-section>* {
    position: relative;
    z-index: 1;
}

/* Chefs Section */
.chefs-section {
    background-color: #842111;
    padding: 100px 0;
    position: relative;
    z-index: 4;
    /* Para que quede encima del parallax */
}

.chefs-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.chefs-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.chefs-img-wrapper {
    position: relative;
    margin-top: -150px;
    /* Hace que la imagen salga por arriba */
    z-index: 5;
}

.chefs-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
    .chefs-section {
        padding: 50px 0 150px;
        text-align: center;
    }

    .chefs-img-wrapper {
        margin-top: 50px;
        margin-bottom: -100px;
    }

    .chefs-title {
        font-size: 3.5rem;
    }
}

/* Premium Products Section */
.premium-products-section {
    width: 100%;
    background-color: #fffdef;
    z-index: 3;
    position: relative;
}

.premium-header {
    background-color: #000;
    padding: 60px 0;
    color: white;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.premium-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
    text-transform: uppercase;
}

.premium-slider-container {
    padding: 80px 0;
}

.product-card {
    text-align: left;
    padding: 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.product-img-wrapper {
    margin-bottom: 30px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05) translateY(-10px);
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.product-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.product-link {
    color: var(--primary-color);
    margin-left: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.product-link:hover {
    color: #000;
}

.btn-buy {
    display: inline-block;
    background-color: #842111;
    color: #fff;
    padding: 10px 25px;
    margin-top: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 1px solid #842111;
}

.btn-buy:hover {
    background-color: transparent;
    color: #842111;
}

/* Swiper Customization for Premium Slider */
.premiumSwiper .swiper-button-next,
.premiumSwiper .swiper-button-prev {
    color: #842111;
}

.premiumSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: .3s;
}

.premiumSwiper .swiper-pagination-bullet-active {
    background: #842111;
    width: 30px;
    height: 12px;
    border-radius: 20px;
}

.premiumSwiper .swiper-button-next::after,
.premiumSwiper .swiper-button-prev::after {
    font-weight: 800;
    font-size: 35px;
}

/* Footer & Other */
.main-footer {
    padding: 50px 0;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Achievements Section */
.achievements-section-wrapper {
    background-color: #f4eee0;
}

.achievements-title-box {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
}

.achievements-title-box h2 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    font-size: 1.5rem;
}

.achievements-section {
    padding: 100px 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.achievements-container {
    display: flex;
    position: relative;
}

.year-side {
    width: 200px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.sticky-20 {
    position: absolute;
    top: 0;
    /* será actualizado por JS */
    right: 13px;
    font-size: 7rem;
    font-weight: 800;
    color: #d35400;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    height: fit-content;
    margin-right: 5px;
    will-change: top;
}

.achievements-list {
    flex: 1;
    padding-left: 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    min-height: 40vh;
    opacity: 0.3;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.achievement-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.year-end {
    font-size: 7rem;
    font-weight: 800;
    color: #3d2b1f;
    line-height: 1;
    margin-right: 40px;
    font-family: 'Outfit', sans-serif;
    min-width: 150px;
}

.achievement-text {
    flex: 1;
    color: #3d2b1f;
    font-size: 1.2rem;
    padding-right: 60px;
    line-height: 1.6;
}

.achievement-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(61, 43, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d35400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.achievement-item.active .achievement-icon {
    border-color: #d35400;
}

@media (max-width: 991px) {
    .year-side {
        width: 120px;
    }

    .sticky-20,
    .year-end {
        font-size: 5rem;
    }

    .year-end {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .achievements-container {
        flex-direction: column;
        align-items: center;
    }

    .year-side {
        width: 100%;
        height: 80px;
        justify-content: center;
        margin-bottom: 20px;
        position: sticky;
        top: 80px;
        z-index: 10;
        background: #f4eee0;
    }

    .sticky-20 {
        position: relative;
        top: 0;
        transform: none;
        margin-right: 0;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-bottom: 80px;
    }

    .year-end {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .achievement-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* Labor Social Section */
.labor-social-header {
    background-color: #3f6b54;
    /* verde similar al diseño */
    padding: 48px 0;
    text-align: center;
    margin-bottom: 60px;
}

.labor-social-header h2 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 4px;
    margin: 0;
    font-size: 2rem;
}

.labor-social-section {
    background-color: #f4eee0;
    padding: 60px 0 100px;
}

.labor-social-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.labor-photo {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f4efe0;
}

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

.labor-social-text p {
    color: #1f1b16;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

@media (max-width: 991px) {
    .labor-social-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .labor-photo {
        max-width: 420px;
        margin: 0 auto 30px;
    }

    .labor-social-text p {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .labor-social-header h2 {
        font-size: 1.6rem;
    }

    .labor-social-text p {
        font-size: 1rem;
    }
}

/* Contact form styles */
.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    color: #3d2b1f;
    font-weight: 600;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form .btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-alert-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 10px;
    border-radius: 4px;
}

.contact-alert-error {
    background: #f2dede;
    color: #a94442;
    padding: 10px;
    border-radius: 4px;
}

/* Contact section layout and visuals */
.contact-section {
    background-color: #fffdef;
    /* fondo claro para la sección */
    padding: 80px 0;
}

.contact-section .container {
    max-width: 1100px;
}

.contact-section .contact-form {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-section h3 {
    color: #3d2b1f;
    margin-top: 0;
}

.contact-section p {
    color: #3d2b1f;
}

.contact-section iframe {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .contact-form {
        padding: 22px;
    }

    .contact-section p {
        text-align: left;
    }
}