/* Enhanced card styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
}

/* Feature card specific styling */
.feature-card {
    background: white;
    height: 100%;
}

.feature-card .card-img {
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Tada animation effect */
@keyframes tada {
    0% { transform: scale(1); }
    10%, 20% { transform: scale(0.98) rotate(-1deg); }
    30%, 50%, 70%, 90% { transform: scale(1.02) rotate(1deg); }
    40%, 60%, 80% { transform: scale(1.02) rotate(-1deg); }
    100% { transform: scale(1) rotate(0); }
}

.tada-hover:hover {
    animation: tada 1s ease;
}

/* Clean professional countdown styling */
.countdown-wrapper {
    background: linear-gradient(135deg, #f8f5f2 0%, #ede7e1 100%);
    position: relative;
    overflow: hidden;
}

.countdown-container {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Title styling */
.countdown-heading h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2c2416;
    margin-bottom: 0.75rem;
}

.countdown-subtitle {
    color: #6c5d4f;
    font-size: 1.125rem;
    font-weight: 400;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

/* Separator */
.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: #A0785A;
    padding: 0 0.5rem;
}

/* Countdown cards */
.date-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    min-width: 140px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid #A0785A;
}

.date-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(160, 120, 90, 0.15);
}

.date-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Numbers */
.countdown-data {
    font-size: 3rem;
    font-weight: 700;
    color: #A0785A;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c5d4f;
    font-weight: 600;
}

/* CTA Button */
.btn-countdown {
    background: #A0785A;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 12px rgba(160, 120, 90, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-countdown:hover {
    background: #8B6849;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(160, 120, 90, 0.3);
}

/* Enhanced hero sections */
.hero-section {
    background-size: cover;
    background-position: center;
    /* min-height: 400px; */
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Background images for hero sections */
.business-vision-bg {
    background-image: url('../images/image06.webp');
}

.innovation-bg {
    background-image: url('../images/image09.webp');
}

/* Enhanced CTA section */
.cta-section {
    background-color: #A0785A;
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-btn {
    background-color: white;
    color: #5e503f;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Buttons styling */
.btn-primary-custom {
    background-color: #ff681D;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(255, 104, 29, 0.2);
}

.btn-primary-custom:hover {
    background-color: #e55a14;
    color: white;
    transform: translateY(-3px);
    /* box-shadow: 0 0.5rem 1rem rgba(255, 104, 29, 0.3); */
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: white;
    color: #5e503f;
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.accent-color {
    color: #A0785A;
}

/* Icon styling */
.icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .countdown-heading h2 {
        font-size: 2rem;
    }

    .countdown-subtitle {
        font-size: 1rem;
    }

    .countdown-data {
        font-size: 2.25rem;
    }

    .date-section {
        min-width: 110px;
        padding: 1.5rem 1rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .countdown-separator {
        display: none;
    }

    .btn-countdown {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-section {
        min-height: 300px;
    }

    .btn {
        background-color: #ff681D;
    }
}

/* Further reduced button styling for hero section */
.hero-btn {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.35rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1.5px solid transparent;
}

.hero-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: height 0.3s ease;
    z-index: -1;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.hero-btn:hover::after {
    height: 100%;
}

.hero-btn-outline {
    background-color: transparent;
    border: 1.5px solid white;
    color: white;
}

.hero-btn-outline:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-btn-solid {
    background-color: #ff681D;
    color: white;
    border: 1.5px solid #ff681D;
}

.hero-btn-solid:hover {
    background-color: #e55a14;
    border-color: #e55a14;
    color: white;
}

/* Smaller pulse animation for the reduced button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 104, 29, 0.7);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(255, 104, 29, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 104, 29, 0);
    }
}

.hero-btn-solid {
    animation: pulse 2s infinite;
}

.hero-btn-solid:hover {
    animation: none;
}