.no-underline, .no-decoration {
    text-decoration: none;
}
.no-underline li {
    margin-bottom: 16px;
    list-style-type: none;
}
/* Countdown Calendar Styles */
.countdown-calendar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    height: 120px; /* Small height as requested */
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.countdown-value {
    position: relative;
    height: 70px;
    width: 100%;
    perspective: 400px;
}

.countdown-card {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.countdown-card.flip {
    transform: rotateX(180deg);
}

.countdown-card-front,
.countdown-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.countdown-card-front {
    background: #69F0AE;
}

.countdown-card-back {
    background: #8BC34A;
    transform: rotateX(180deg);
}

.countdown-label {
    margin-top: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #333;
    font-weight: 500;
}
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-call {
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.btn-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.contact-info {
    margin-top: 25px;
    font-size: 16px;
    color: #6c757d;
}
.video-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-thumbnail {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-top: 5px;
}

.custom-curve {
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--accent-color_2);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.shake {
  animation: shake 0.4s ease;
}

.field-error {
  border: 1px solid red !important;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp, .btn-call {
        width: 100%;
        justify-content: center;
    }
    
    .bg-gray {
        padding: 30px 20px;
    }
}