/* ================================
   Variables & Reset
   ================================ */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ================================
   Back to Top Button
   ================================ */
.btn-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.btn-back-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.btn-back-top.show {
    display: flex;
}

/* ================================
   Top Bar
   ================================ */
.top-bar {
    background: var(--dark-bg);
    padding: 10px 0;
}

.top-link {
    color: var(--white);
    font-size: 18px;
    padding: 5px 10px;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--primary-color);
}

/* ================================
   Header & Navigation
   ================================ */
.site-header {
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white) !important;
}

.brand-main {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.brand-sub {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.nav-link {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem !important;
    color: var(--white) !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-main {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.nav-sub {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ================================
   Hero Slider
   ================================ */
.hero-slider {
    position: relative;
    height: 600px;
}

.carousel {
    height: 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    bottom: 50%;
    transform: translateY(50%);
}

.caption-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.caption-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 20px;
}

/* ================================
   Section Titles
   ================================ */
.section-title {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.section-title span {
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

/* ================================
   Services Section
   ================================ */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ================================
   Promotions Section
   ================================ */
.promotions-section {
    background: var(--light-bg);
}

.promo-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-content {
    padding: 1rem;
}

.promo-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    transition: var(--transition);
}

.promo-link:hover {
    color: var(--primary-color);
}

/* ================================
   Info Section
   ================================ */
.info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.date-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.date-item:hover {
    background: #e8f4f8;
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    margin-right: 1.5rem;
}

.date-badge .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-badge .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.date-content h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0;
}

/* ================================
   Custom Tabs
   ================================ */
.custom-tabs {
    border-bottom: 2px solid #dee2e6;
}

.custom-tabs .nav-link {
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.custom-tabs .nav-link:hover {
    color: var(--primary-color);
}

.custom-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* ================================
   Hours List
   ================================ */
.hours-list {
    padding: 1rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--secondary-color);
}

.hours-item .time {
    color: var(--text-light);
}

.hours-item .time.closed {
    color: var(--primary-color);
    font-weight: 600;
}

/* ================================
   Contact Info Box
   ================================ */
.contact-info-box h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-box address {
    margin-bottom: 1.5rem;
}

.contact-info-box address p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-info-box address i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-info-box address a {
    color: var(--accent-color);
}

.contact-info-box address a:hover {
    color: var(--primary-color);
}

/* ================================
   Buttons
   ================================ */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================
   Footer
   ================================ */
.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    margin-top: 4rem;
}

.footer-main {
    padding: 2rem 0;
}

.footer-text {
    margin: 0;
    font-size: 1.1rem;
}

.footer-bottom {
    background: var(--dark-bg);
    padding: 1rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--white);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 991px) {
    .hero-slider {
        height: 400px;
    }
    
    .caption-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .navbar-collapse {
        background: var(--secondary-color);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
    }
    
    .caption-content h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .date-badge {
        width: 60px;
        height: 60px;
    }
    
    .date-badge .day {
        font-size: 1.5rem;
    }
}
/* ================================
   Page Header
   ================================ */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

.page-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ================================
   Language Pills/Tabs
   ================================ */
.custom-pills {
    gap: 1rem;
}

.custom-pills .nav-link {
    background: var(--light-bg);
    color: var(--text-dark);
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.custom-pills .nav-link:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.custom-pills .nav-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* ================================
   Content Cards
   ================================ */
.content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.content-body {
    padding: 2.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
}

/* ================================
   Alert Boxes
   ================================ */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1.25rem;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
}

.alert-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.alert i {
    font-size: 1.5rem;
}

/* ================================
   Service Feature Cards
   ================================ */
.service-feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-feature-card:hover .service-icon-wrapper {
    transform: rotateY(180deg);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.service-feature-card h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    background: var(--light-bg);
}

.cta-content {
    padding: 2rem;
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: inline-block;
}

.cta-content h2 {
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-content .lead {
    color: var(--text-light);
}

/* ================================
   Contact CTA Card
   ================================ */
.contact-cta-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-cta-card h3 {
    color: var(--white);
    font-weight: 700;
}

.contact-cta-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ================================
   Responsive Adjustments
   ================================ */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .custom-pills .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .content-body {
        padding: 1.5rem;
    }

    .content-text .lead {
        font-size: 1.1rem;
    }

    .service-feature-card {
        padding: 1.5rem;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .service-icon-wrapper i {
        font-size: 1.75rem;
    }

    .contact-cta-card {
        padding: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .custom-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-pills .nav-link {
        width: 100%;
    }

    .cta-icon {
        font-size: 2.5rem;
    }
}
/* ================================
   Promo Header
   ================================ */
.promo-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.promo-header .page-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   Promotions Gallery
   ================================ */
.promotions-gallery {
    min-height: 400px;
}

.promotions-gallery .lead {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* ================================
   Promo Detail Card
   ================================ */
.promo-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.promo-detail-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* ================================
   Promo Image Wrapper
   ================================ */
.promo-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    cursor: pointer;
}

.promo-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.promo-image-wrapper:hover .promo-detail-img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.promo-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* ================================
   Promo Detail Content
   ================================ */
.promo-detail-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-header {
    margin-bottom: 1.5rem;
}

.promo-category {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.promo-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.promo-description {
    margin-bottom: 1.5rem;
}

.promo-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ================================
   Feature List
   ================================ */
.promo-features {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ================================
   Promo Price Section
   ================================ */
.promo-price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.promo-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ================================
   Promo Actions
   ================================ */
.promo-actions {
    display: flex;
    gap: 0.75rem;
}

.promo-actions .btn {
    flex: 1;
}

/* ================================
   Coming Soon Card
   ================================ */
.coming-soon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

.coming-soon-content {
    text-align: center;
    padding: 3rem 2rem;
}

.coming-soon-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.coming-soon-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ================================
   Benefits Section
   ================================ */
.benefit-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ================================
   Newsletter Section
   ================================ */
.newsletter-card {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.newsletter-card h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-card .btn-light {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
}

.newsletter-card .btn-light:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ================================
   Modal Customization
   ================================ */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: var(--secondary-color);
    color: var(--white);
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body img {
    max-height: 70vh;
    object-fit: contain;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 991px) {
    .promo-detail-card .row {
        flex-direction: column;
    }
    
    .promo-image-wrapper {
        min-height: 250px;
    }
    
    .promo-detail-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .promo-header h3 {
        font-size: 1.3rem;
    }
    
    .discount-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .newsletter-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-content {
        padding: 2rem 1rem;
    }
    
    .coming-soon-content i {
        font-size: 3rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
}

/* ================================
   Animations
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-detail-card {
    animation: fadeInUp 0.6s ease-out;
}

.promo-detail-card:nth-child(2) {
    animation-delay: 0.2s;
}
/* ================================
   Blog Header
   ================================ */
.blog-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ================================
   Blog Post
   ================================ */
.blog-post {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.blog-post:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ================================
   Featured Post
   ================================ */
.featured-post {
    border: 3px solid var(--primary-color);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.featured-badge {
    background: var(--primary-color);
    color: var(--white);
}

/* ================================
   Post Content
   ================================ */
.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.post-date,
.post-category {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.post-date i,
.post-category i {
    color: var(--primary-color);
}

.post-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-excerpt .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.post-excerpt strong {
    color: var(--primary-color);
}

.post-footer {
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ================================
   Placeholder Post
   ================================ */
.placeholder-post {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    padding: 3rem 2rem;
}

.placeholder-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.placeholder-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: var(--text-light);
    margin: 0;
}

/* ================================
   Sidebar Widgets
   ================================ */
.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.widget-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.widget-title i {
    color: var(--primary-color);
}

.widget-content {
    color: var(--text-dark);
}

/* ================================
   About Widget
   ================================ */
.about-widget .about-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.about-widget .about-image img {
    width: 100%;
    transition: var(--transition);
}

.about-widget:hover .about-image img {
    transform: scale(1.05);
}

.about-widget p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ================================
   Hours Widget
   ================================ */
.hours-widget .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-widget .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.hours-widget .hours-list li:hover {
    background: #e8f4f8;
}

.hours-widget .hours-list li.closed {
    opacity: 0.6;
}

.hours-widget .hours-list li.closed .time {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-widget .day {
    font-weight: 600;
    color: var(--secondary-color);
}

.hours-widget .time {
    color: var(--text-light);
}

/* ================================
   Quick Links Widget
   ================================ */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-bg);
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition);
}

.quick-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.quick-links a i {
    color: var(--primary-color);
    transition: var(--transition);
}

.quick-links a:hover i {
    color: var(--white);
}

/* ================================
   Contact Widget
   ================================ */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.contact-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.contact-info-list div {
    flex: 1;
}

.contact-info-list strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-info-list span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info-list a {
    color: var(--accent-color);
    transition: var(--transition);
}

.contact-info-list a:hover {
    color: var(--primary-color);
}

/* ================================
   Blog CTA Section
   ================================ */
.blog-cta-card {
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.blog-cta-card h3 {
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.blog-cta-card p {
    color: rgba(255, 255, 255, 0.9);
}

.blog-cta-card .btn-primary {
    background: var(--white);
    color: var(--accent-color);
    border: none;
}

.blog-cta-card .btn-primary:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 991px) {
    .post-image img {
        height: 300px;
    }
    
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .post-footer {
        flex-direction: column;
    }
    
    .post-footer .btn {
        width: 100%;
    }
    
    .blog-cta-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .blog-cta-card h3 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .post-image img {
        height: 250px;
    }
    
    .post-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
    
    .placeholder-content i {
        font-size: 3rem;
    }
}

/* ================================
   Animations
   ================================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog-post {
    animation: slideInLeft 0.6s ease-out;
}

.sidebar-widget {
    animation: slideInRight 0.6s ease-out;
}

.sidebar-widget:nth-child(2) {
    animation-delay: 0.1s;
}

.sidebar-widget:nth-child(3) {
    animation-delay: 0.2s;
}

.sidebar-widget:nth-child(4) {
    animation-delay: 0.3s;
}
/* ================================
   Contact Header
   ================================ */
.contact-header {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

/* ================================
   Contact Info Cards
   ================================ */
.contact-info-section .info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-section .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: rotateY(360deg);
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.info-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--secondary-color);
}

/* ================================
   Form Card
   ================================ */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-title {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.form-title i {
    color: var(--primary-color);
}

/* ================================
   Form Styling
   ================================ */
#contactForm .input-group-text {
    background: var(--light-bg);
    border-color: #dee2e6;
    color: var(--primary-color);
}

#contactForm .form-control {
    border-color: #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

#contactForm .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

#contactForm .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

#contactForm .text-danger {
    color: var(--primary-color) !important;
}

#contactForm textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ================================
   Map Card
   ================================ */
.map-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* ================================
   Opening Hours Compact
   ================================ */
.opening-hours-compact {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 1.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.hour-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-row.closed {
    opacity: 0.6;
}

.day-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.time-range {
    color: var(--text-light);
}

.hour-row.closed .time-range {
    color: var(--primary-color);
    font-weight: 600;
}

/* ================================
   FAQ Section
   ================================ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:not(.collapsed) i {
    color: var(--white);
}

.accordion-button i {
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e74c3c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 991px) {
    .form-card,
    .map-card {
        padding: 2rem;
    }

    .contact-info-section .info-card {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        width: 70px;
        height: 70px;
    }

    .info-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-title i {
        margin-bottom: 0.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .form-card,
    .map-card {
        padding: 1.5rem;
    }

    .contact-info-section .info-card {
        padding: 1.5rem;
    }

    .opening-hours-compact {
        padding: 1rem;
    }

    .hour-row {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ================================
   Animations
   ================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: slideInUp 0.6s ease-out;
}

.info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.info-card:nth-child(3) {
    animation-delay: 0.2s;
}
