/*
Template Style: Professional Corporate (Light Green/Gray)
Description: A professional corporate design with sage green and sophisticated gray tones
Colors: #52B788 (Green), #74C69D (Light Green), #F8F9FA (Light Gray), #212529 (Dark Gray)
*/

/* Override Body and Base Colors */
body {
    background-color: #F8F9FA !important;
    color: #212529 !important;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%) !important;
    border-bottom: 3px solid #52B788 !important;
    box-shadow: 0 2px 20px rgba(82, 183, 136, 0.12) !important;
}

.main-nav a {
    color: #212529 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.main-nav a:hover {
    color: #52B788 !important;
}

/* Hero Section - Corporate Professional Style */
.hero-section {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.9) 0%, rgba(64, 145, 108, 0.9) 100%), 
                url('../assets/hero-section.png') center/cover no-repeat !important;
    position: relative !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    pointer-events: none;
}

.hero-content h1 {
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    font-size: 3.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-content p {
    font-weight: 400 !important;
    line-height: 1.7 !important;
    max-width: 700px !important;
}

/* Section Styles */
.section {
    background-color: #FFFFFF !important;
}

.section:nth-child(even) {
    background: linear-gradient(to bottom, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%) !important;
}

.section h2, .section h3 {
    color: #212529 !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.section h3::after {
    background: linear-gradient(90deg, #52B788, #74C69D) !important;
    height: 4px !important;
    width: 70px !important;
}

/* Cards - Corporate Design */
.card {
    background: #FFFFFF !important;
    border: 2px solid #E9ECEF !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 25px rgba(82, 183, 136, 0.1) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 35px rgba(82, 183, 136, 0.25) !important;
    border-color: #52B788 !important;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #52B788, #74C69D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card h4, .card h3 {
    color: #212529 !important;
    font-weight: 700 !important;
}

.card p {
    color: #495057 !important;
    line-height: 1.6 !important;
}

.card .fas {
    color: #52B788 !important;
}

/* Buttons and Links */
.nav-link, .btn, button, input[type="submit"] {
    background: linear-gradient(135deg, #52B788 0%, #74C69D 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.3) !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover, .btn:hover, button:hover, input[type="submit"]:hover {
    background: linear-gradient(135deg, #40916C 0%, #52B788 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(82, 183, 136, 0.4) !important;
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%) !important;
    border-top: 1px solid #DEE2E6 !important;
    border-bottom: 1px solid #DEE2E6 !important;
}

.dropdown-group label {
    color: #212529 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
}

.dropdown-group select {
    border: 2px solid #CED4DA !important;
    background: #FFFFFF !important;
    color: #212529 !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
}

.dropdown-group select:hover, .dropdown-group select:focus {
    border-color: #52B788 !important;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15) !important;
}

/* Rating Stars */
.stars {
    color: #FFC107 !important;
}

.rating-value {
    color: #212529 !important;
    font-weight: 700 !important;
}

/* Topic Tags */
.topic-tag {
    background: linear-gradient(135deg, #52B788 0%, #74C69D 100%) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 8px rgba(82, 183, 136, 0.3) !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #212529 0%, #343A40 100%) !important;
    color: #F8F9FA !important;
    border-top: 4px solid #52B788 !important;
}

.footer-section h3 {
    color: #52B788 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.footer-nav a {
    color: #CED4DA !important;
    transition: all 0.3s ease !important;
}

.footer-nav a:hover {
    color: #52B788 !important;
    padding-left: 5px !important;
}

.contact-details .fas.fa-envelope,
.contact-details .fas.fa-phone,
.contact-details .fab.fa-whatsapp,
.contact-details .fas.fa-map-marker-alt {
    color: #52B788 !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
}

.contact-details .fas.fa-envelope:hover,
.contact-details .fas.fa-phone:hover,
.contact-details .fab.fa-whatsapp:hover,
.contact-details .fas.fa-map-marker-alt:hover {
    color: #74C69D !important;
    transform: scale(1.15) !important;
}

footer .wp-block-heading {
    color: #52B788 !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 1rem !important;
}

/* Detail Sections */
.detail-section {
    background: #FFFFFF !important;
    border: 2px solid #E9ECEF !important;
    border-left: 5px solid #52B788 !important;
    box-shadow: 0 5px 25px rgba(82, 183, 136, 0.1) !important;
}

.detail-section h2 {
    color: #52B788 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Work Hours */
.work-day {
    border-bottom: 2px solid #F8F9FA !important;
    padding: 1rem 0 !important;
}

.work-day strong {
    color: #212529 !important;
    font-weight: 700 !important;
}

/* Breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%) !important;
    border-bottom: 2px solid #DEE2E6 !important;
}

.breadcrumbs a {
    color: #52B788 !important;
    font-weight: 600 !important;
}

/* Contact Info */
.phone-link, .website-link {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%) !important;
    border: 2px solid #DEE2E6 !important;
    color: #212529 !important;
    font-weight: 600 !important;
}

.phone-link:hover, .website-link:hover {
    background: linear-gradient(135deg, #52B788 0%, #74C69D 100%) !important;
    color: #FFFFFF !important;
    border-color: #52B788 !important;
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.3) !important;
}

/* Attributes */
.attribute-category li::before {
    color: #52B788 !important;
    font-weight: bold !important;
}

.attribute-category li {
    border-left: 3px solid #52B788 !important;
    padding-left: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

.attributes-section.available strong,
.attribute-category.available strong {
    color: #52B788 !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.contact-item strong {
    color: #52B788 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.attributes-section.available h4,
.attribute-category.available h4 {
    color: #52B788 !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.contact-item a {
    color: #52B788 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.contact-item a:hover {
    color: #40916C !important;
    text-decoration: underline !important;
}

.detail-section p a {
    color: #52B788 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.detail-section p a:hover {
    color: #40916C !important;
    text-decoration: underline !important;
}

/* Popular Times */
.popular-times, .people-also-search {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%) !important;
    border: 2px solid #DEE2E6 !important;
    border-left: 5px solid #52B788 !important;
}

.popular-times h4, .people-also-search h4 {
    color: #212529 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.search-tag {
    background: linear-gradient(135deg, #52B788 0%, #74C69D 100%) !important;
}

.popular-day {
    border-bottom: 2px solid #DEE2E6 !important;
    padding: 0.75rem 0 !important;
}

/* Additional Corporate Elements */
.card-content {
    position: relative !important;
}

.card-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #52B788;
}

/* Single Directory Page Styles */
.category-badge {
    background: linear-gradient(135deg, #52B788 0%, #74C69D 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 3px 12px rgba(82, 183, 136, 0.35) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.address-details {
    background: linear-gradient(to bottom, #F8F9FA, #FFFFFF) !important;
    border: 2px solid #E9ECEF !important;
    border-left: 5px solid #52B788 !important;
    padding: 1.5rem !important;
}

.address-details p {
    color: #212529 !important;
    font-size: 1rem !important;
    padding: 0.5rem 0 !important;
}

.address-details strong {
    color: #52B788 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
}

.detail-section p {
    color: #495057 !important;
    line-height: 1.8 !important;
}

.business-title {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%) !important;
    color: #212529 !important;
    border-left: 5px solid #52B788 !important;
    font-weight: 700 !important;
}

.map-link {
    background: linear-gradient(135deg, #52B788 0%, #74C69D 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.35) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
}

.map-link:hover {
    background: linear-gradient(135deg, #40916C 0%, #52B788 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(82, 183, 136, 0.45) !important;
    color: #FFFFFF !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .main-nav a {
        font-size: 0.85rem !important;
    }
}
