/* Custom CSS Overrides */

/* ==============================
   Footer – darken-layout colors
   ============================== */
.darken-layout {
    background-color: #f19764 !important;
}

footer .darken-layout p {
    color: rgb(24 24 24 / 90%) !important;
}

footer .darken-layout ul li,
footer .darken-layout ul li a,
footer .darken-layout .sub-title ul li,
footer .darken-layout .sub-title ul li a,
footer .darken-layout .contact-list li,
footer .darken-layout .contact-list li i {
    color: #181818 !important;
}

footer .darken-layout .sub-title h4 {
    color: #181818 !important;
}

.main-menu .brand-logo img {
    height: 60px !important;
    /* Increased height */
    width: auto !important;
}

.product-right .size-box ul li {
    width: 60px;
    height: 60px;
}

/* ==============================
   About Us Page Styles
   ============================== */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.about-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}
.about-hero-section .display-4 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Story Section - Experience Badge */
.about-story-image {
    position: relative;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--theme-color, #ff4c3b);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Stats Section */
.about-stats-section {
    background: var(--theme-color, #ff4c3b);
}
.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.about-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline */
.about-timeline {
    position: relative;
    padding-left: 40px;
}
.about-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e0e0e0;
}
.about-timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.about-timeline-item:last-child {
    margin-bottom: 0;
}
.about-timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--theme-color, #ff4c3b);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--theme-color, #ff4c3b);
}
.about-timeline-content {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 3px solid var(--theme-color, #ff4c3b);
}
.about-timeline-year {
    display: inline-block;
    background: var(--theme-color, #ff4c3b);
    color: #fff;
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Team Cards */
.about-team-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.about-team-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,76,59,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.about-team-icon i {
    font-size: 28px;
    color: var(--theme-color, #ff4c3b);
}

/* Jango Kids Section */
.about-kids-visual {
    background: linear-gradient(135deg, var(--theme-color, #ff4c3b) 0%, #e8433a 100%);
}
.about-kids-visual i {
    color: rgba(255,255,255,0.9);
}
.about-blockquote {
    border-left: 3px solid var(--theme-color, #ff4c3b);
}

/* CTA Section */
.about-cta-section {
    background: #f8f9fa;
}

/* ==============================
   Contact Us Page Styles
   ============================== */

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.contact-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,76,59,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-icon-wrap i {
    font-size: 28px;
    color: var(--theme-color, #ff4c3b);
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}
.contact-form-wrap .btn-solid {
    padding: 10px 35px;
}

/* Business Hours Card */
.contact-hours-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Map Placeholder */
.contact-map-placeholder .map-embed {
    border-radius: 10px;
    overflow: hidden;
}

/* ==============================
   Responsive Adjustments
   ============================== */
@media (max-width: 767px) {
    .about-hero-section {
        min-height: 300px;
    }
    .about-hero-section .display-4 {
        font-size: 1.8rem;
    }
    .about-experience-badge {
        bottom: -10px;
        left: -10px;
        padding: 10px 15px;
    }
    .about-experience-badge .display-5 {
        font-size: 1.5rem;
    }
    .about-stat-number {
        font-size: 1.8rem;
    }
    .about-timeline {
        padding-left: 30px;
    }
    .about-timeline-content {
        padding: 18px;
    }
    .about-timeline-dot {
        left: -23px;
        width: 12px;
        height: 12px;
    }
    .about-timeline::before {
        left: 12px;
    }
}