/* .testimonials-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #da3325, #be1000);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 20px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f8f9fa;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 3rem;
    color: #da3325;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-details h5 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.client-details span {
    color: #da3325;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    margin-top: 8px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 2px;
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: #da3325;
    border-radius: 50%;
    animation: float-1 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: #be1000;
    transform: rotate(45deg);
    animation: float-2 6s ease-in-out infinite;
}

.shape-3 {
    top: 30%;
    right: 3%;
    width: 60px;
    height: 60px;
    border: 3px solid #da3325;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-2 {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.testimonial-carousel .carousel-item {
    padding: 0 15px;
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(218, 51, 37, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(218, 51, 37, 0.2);
    transition: all 0.3s ease;
}



.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(87%) saturate(1346%) hue-rotate(345deg) brightness(91%) contrast(88%);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(218, 51, 37, 0.3);
    border: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #da3325;
    transform: scale(1.3);
}

.stats-row {
    margin-top: 80px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #da3325;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 15px 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
    }
    
    .carousel-control-prev {
        left: -30px;
    }
    
    .carousel-control-next {
        right: -30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}
 */



.testimonials {
    font-family: 'Georgia', serif;
    background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1600&q=80') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.testimonials::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.testimonials-section {
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.decorative-element {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-title {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Segoe UI', sans-serif;
}

.stars {
    color: #ffc107;
    font-size: 1.8rem;
    letter-spacing: 5px;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    font-style: italic;
}

.author-name {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
}

.nav-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e7272d;
    width: 30px;
    border-radius: 5px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #e7272d;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: #da050d;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: -70px;
}

.nav-arrow.next {
    right: -70px;
}

@media (max-width: 1200px) {
    .nav-arrow.prev {
        left: -25px;
    }

    .nav-arrow.next {
        right: -25px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 400px;
        padding: 40px 30px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .nav-arrow.prev {
        left: 10px;
    }

    .nav-arrow.next {
        right: 10px;
    }

    .card-title {
        font-size: 0.8rem;
    }

    .stars {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}




.food-menu2-area {
    background: #f8f8f8;
    padding: 100px 0 70px;
}

@media only screen and (max-width: 479px) {
    .food-menu2-area .col-xs-6 {
        width: 100%;
    }
}

.food-menu2-area .myisotop {
    text-align: center;
    margin-bottom: 35px;
}

.food-menu2-area .myisotop:after {
    display: none;
}

.food-menu2-area .myisotop a {
    background: #ffffff;
    padding: 10px 40px;
    font-size: 16px;
    color: #646464;
    margin: 0 1px 5px 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #bdbdbd;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.food-menu2-area .myisotop a:hover {
    border: 1px solid #e7272d;
    background: #e7272d;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.food-menu2-area .myisotop .current {
    border: 1px solid #e7272d;
    background: #e7272d;
    color: #ffffff;
}

.food-menu2-area .food-menu2-box {
    background: #ffffff;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder {
    overflow: hidden;
    position: relative;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-color: rgba(34, 34, 34, 0.8);
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -moz-transform: scale(1) translateY(300px);
    -webkit-transform: scale(1) translateY(300px);
    -o-transform: scale(1) translateY(300px);
    -ms-transform: scale(1) translateY(300px);
    transform: scale(1) translateY(300px);
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder a img {
    width: 100%;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder .food-menu2-more-holder ul {
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    top: 30%;
    z-index: 2;
    margin: 0 auto;
    opacity: 0;
    -moz-transform: scale(1) translateY(300px);
    -webkit-transform: scale(1) translateY(300px);
    -o-transform: scale(1) translateY(300px);
    -ms-transform: scale(1) translateY(300px);
    transform: scale(1) translateY(300px);
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder .food-menu2-more-holder ul li {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    line-height: 52px;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder .food-menu2-more-holder ul li a {
    padding: 15px;
    border-radius: 50%;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder .food-menu2-more-holder ul li a i {
    font-size: 18px;
    color: #ffffff;
}

.food-menu2-area .food-menu2-box .food-menu2-img-holder .food-menu2-more-holder ul li:hover {
    background: #e7272d;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.food-menu2-area .food-menu2-box .food-menu2-title-holder {
    padding: 20px 0 5px;
    position: relative;
}

.food-menu2-area .food-menu2-box .food-menu2-title-holder span {
    background-color: #e7272d;
    height: 42px;
    width: 75px;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    display: block;
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    top: -42px;
    line-height: 42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
}

.food-menu2-area .food-menu2-box .food-menu2-title-holder h3 {
    font-size: 18px;
}

.food-menu2-area .food-menu2-box .food-menu2-title-holder h3 a {
    color: #222222;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.food-menu2-area .food-menu2-box .food-menu2-title-holder h3 a:hover {
    color: #e7272d;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.food-menu2-area .food-menu2-box:hover .food-menu2-more-holder ul {
    opacity: 1;
    -moz-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.food-menu2-area .food-menu2-box:hover .food-menu2-img-holder:before {
    opacity: 1;
    -moz-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}




.contact-page-section {
    text-align: center;
    padding: 60px 20px 40px;
}

.contact-page-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3 0px;
    font-weight: bold;
}

.contact-page-section p {
    color: #555;
    margin-bottom: 40px;
}

/* Contact form */
.contact-page-form {
    max-width: 700px;
    margin: 0 auto 60px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-page-form input,
.contact-page-form textarea {
    padding: 14px 18px;
    border: none;
    border-radius: 50px;
    /* pill shape */
    font-size: 1rem;
    width: 100%;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-page-form textarea {
    grid-column: span 2;
    border-radius: 25px;
    resize: none;
}

.contact-page-form button {
    grid-column: span 2;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: #da3325;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-page-form button:hover {
    background: #bd1000;
}

/* Contact info section */
.contact-page-info-bg {
    background: #da3325;
    padding: 50px 20px;
}


.contact-page-info-wrap {
  background: #f2f2f2;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  margin-top: -110px;
}


.contact-page-info-box {
  text-align: center;
  padding: 20px;
}

.contact-page-info-box .contact-page-icon {
    background: #da3325;
    color: #fff;
    font-size: 1.5rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-info-box h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-page-info-box p {
    color: #333;
    font-size: 0.95rem;
}

.contact-page-info-box a {
    color: #da3325;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-form {
        grid-template-columns: 1fr;
    }

    .contact-page-form textarea,
    .contact-page-form button {
        grid-column: span 1;
    }

    .contact-page-info-wrap {
        flex-direction: column;
        text-align: center;
    }
}





.services-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 60px;
}

.services-wrapper {
    position: relative;
    background: url('../img/vista/DSC_6437.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 80px 40px 60px;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
}

.services-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7));
    border-radius: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 0 0 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-title {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.service-description {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 25px;
}

.more-button {
    background: transparent;
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px 20px;
}

.more-button:hover {
    color: #0066ff;
}

.icon-wrapper i {
    font-size: 40px;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .services-wrapper {
        padding: 80px 30px 60px;
    }

    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 40px 15px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .services-wrapper {
        padding: 70px 20px 50px;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-wrapper {
        padding: 60px 15px 40px;
        border-radius: 15px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin: -35px auto 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
        padding: 0 20px;
    }
}

#services {
    scroll-behavior: smooth;
}





