:root {
    --primary: #72ae44;
    --secondary: #5a8a37;
    --accent: #ff914d;
    --light: #f8f9fa;
    --dark: #2d4a1f;
    --success: #4caf50;
    --gradient: linear-gradient(135deg, #72ae44 0%, #5a8a37 100%);
    --accent-gradient: linear-gradient(135deg, #ff914d 0%, #ffab76 100%);
    --light-green: #f0f7e9;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 0;
    padding-bottom:15px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.cta-banner-option-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    /* border: 1px solid var(--dark); */
    height: 100%;
    border-bottom: 3px solid #72ae44;
    position: relative;
    overflow: hidden;
    margin-bottom:10px;
}

.cta-banner-option-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-banner-option-card:hover {
    transform: translateY(-8px);
}

.cta-banner-option-card:hover::before {
    transform: scaleX(1);
}

.cta-banner-option-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(26, 58, 95, 0.3);
}

.cta-banner-option-card:hover .cta-banner-option-icon {
    transform: rotate(15deg) scale(1.1);
    background: var(--gold-gradient);
    color: var(--primary);
}

.cta-banner-option-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Lora', serif;
}

.cta-banner-option-desc {
    color: #6c757d;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.cta-banner-option-link {
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-banner-option-card:hover .cta-banner-option-link {
    color: var(--accent);
}

/* Offcanvas Customization */
.offcanvas {
    border-left: 5px solid var(--accent);
}
.offcanvas {
    pointer-events: none;
}

.offcanvas.show {
    pointer-events: auto;
}
.offcanvas-end {
    transform: translateX(100%);
}

.offcanvas-end.show {
    transform: translateX(0);
}
.offcanvas {
    z-index: 1055;
}

.offcanvas-header {
    background: var(--gradient);
    color: #fff;
    padding: 20px;
}

.offcanvas-title {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

.btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas-body {
    padding: 25px;
}

/* Working Hours Table */
.working-hour-table {
    width: 100%;
    border-collapse: collapse;
}

.working-hour-table tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s;
}

.working-hour-table tr:hover {
    background: #f8f9fa;
}

.working-hour-table td {
    padding: 12px 8px;
    font-size: 0.95rem;
}

.working-hour-table td:first-child {
    font-weight: 600;
    color: #000;
}

.working-hour-table td:last-child {
    text-align: right;
    color: var(--dark);
    font-weight: 500;
}

.working-table-highlight-row {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 600;
}

/* Consultation Form */
.counsult-form-drawer {
    margin-bottom: 15px;
}

.counsult-form-control {
    border-radius: 8px;
    padding: 6px 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
    font-size: 0.95rem;
    width: 100%;
}

.counsult-form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(51, 139, 45, 0.2);
}

.counsult-form-submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
}

.counsult-form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.4);
    color: white;
}

/* Contact Details */
.contact-drawer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.contact-drawer-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-drawer-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-drawer-text h5 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1rem;
}

.contact-drawer-text p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-banner-section {
        margin-top: -70px;
    }

    .cta-banner-option-card {
        padding: 18px;
    }

    .cta-banner-option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .cta-banner-option-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-banner-section {
        margin-top: -60px;
    }

    .cta-banner-option-desc {
        display: none;
    }

    .cta-banner-option-card {
        padding: 15px;
    }

    .cta-banner-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .cta-banner-option-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .cta-banner-option-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cta-banner-section {
        margin-top: -50px;
    }

    .cta-banner-option-card {
        padding:10px 8px 3px 8px;
    }

    .cta-banner-option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .cta-banner-option-title {
        font-size: 0.9rem;
    }

    .cta-banner-option-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 460px){
    .cta-banner-option-icon{
        height:30px;
        width:30px;
        font-size: 0.9rem;
        margin-bottom:5px;
    }
    .cta-banner-option-title {
        font-size: 0.7rem;
        margin-bottom:2px;
    }
    .cta-banner-option-link{
        font-size: 0.5rem;
    }
}

/* Animation for elements */
@keyframes cta-cards-fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-element {
    animation: cta-cards-fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
