 /* Additional styles for categories page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 80px;
    padding: 4rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

.stats-summary {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.search-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.search-box {
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-box .input-group {
    border: none;
}

.search-box .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-weight: 600;
}

.categories-grid-section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-color);
}

.category-card-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-icon {
    font-size: 1rem;
    /* margin-bottom: 1rem; */
}

.category-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shop-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.category-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.7;
}

.category-card-standard {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card-standard:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-card-standard .category-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.category-card-standard .category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.category-card-standard .shop-count {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.category-card-standard .category-desc {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin: 0;
}

/* Gradient classes for category cards */
.gradient-category-restaurant {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
}

.gradient-category-hotel {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.gradient-category-coffee {
    background: linear-gradient(135deg, #D68910, #E67E22);
}

.gradient-category-agriculture {
    background: linear-gradient(135deg, #8BC34A, #689F38);
}

.gradient-category-processed {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.gradient-category-retail {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.gradient-category-other {
    background: linear-gradient(135deg, #607D8B, #455A64);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .stats-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-card-large {
        min-height: 150px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
} /* Additional styles for company-plans page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

.plan-highlight {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
}

.percentage-display {
    text-align: center;
    margin: 3rem 0;
}

.percentage-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.percentage-label {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.breakdown-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.breakdown-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.breakdown-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.breakdown-description {
    color: var(--muted-color);
    margin-top: 0.5rem;
}

.green-point-section {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
    padding: 4rem 0;
    margin: 3rem 0;
}

.green-point-section .plan-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* New Referral Tree Design */
.referral-tree-container {
    position: relative;
    margin: 4rem 0;
    overflow-x: auto;
}

.referral-tree {
    position: relative;
    min-width: 1200px;
    padding: 2rem 0;
}

/* Root Level */
.tree-root {
    text-align: center;
    margin-bottom: 3rem;
}

.root-node {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 10;
}

.root-node::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #FF6B6B, transparent);
}

.root-node .node-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.root-node h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.root-node p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

/* Tree Levels */
.tree-level {
    margin-bottom: 3rem;
    position: relative;
}

.level-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.level-title h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.level-title p {
    margin: 0.5rem 0 0 0;
    color: var(--muted-color);
    font-size: 0.9rem;
}

/* Tree Branches */
.tree-branches {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.branch-line {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.branch-nodes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.branch-node {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 150px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.branch-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.branch-node::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary-color);
}

.branch-node .node-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.branch-node h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.commission {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

/* Level-specific colors */
.level-1 .branch-node {
    border-color: #FF6B6B;
}

.level-1 .branch-node .node-icon {
    color: #FF6B6B;
}

.level-1 .branch-node .commission {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.level-2 .branch-node {
    border-color: #4ECDC4;
}

.level-2 .branch-node .node-icon {
    color: #4ECDC4;
}

.level-2 .branch-node .commission {
    background: linear-gradient(135deg, #4ECDC4, #6EE7DF);
}

.level-3 .branch-node {
    border-color: #45B7D1;
}

.level-3 .branch-node .node-icon {
    color: #45B7D1;
}

.level-3 .branch-node .commission {
    background: linear-gradient(135deg, #45B7D1, #67C9E1);
}

.level-4 .branch-node {
    border-color: #96CEB4;
}

.level-4 .branch-node .node-icon {
    color: #96CEB4;
}

.level-4 .branch-node .commission {
    background: linear-gradient(135deg, #96CEB4, #B8E6C8);
}

.level-5 .branch-node {
    border-color: #FFEAA7;
}

.level-5 .branch-node .node-icon {
    color: #FFB347;
}

.level-5 .branch-node .commission {
    background: linear-gradient(135deg, #FFEAA7, #FFF2C7);
    color: #333;
}

/* Tree Legend */
.tree-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.legend-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
}

.legend-item span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .referral-tree {
        min-width: 100%;
        padding: 1rem;
    }
    
    .branch-nodes {
        gap: 1rem;
    }
    
    .branch-node {
        min-width: 120px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .referral-tree {
        min-width: 100%;
    }
    
    .branch-nodes {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .branch-node {
        width: 100%;
        max-width: 200px;
    }
    
    .tree-legend {
        flex-direction: column;
        align-items: center;
    }
    
    .legend-item {
        width: 100%;
        justify-content: center;
    }
}

/* Old grid styles (keeping for reference) */
.referral-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.referral-level {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.referral-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.level-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.level-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.green-fund {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.fund-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.flexible-rate {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 4rem 0;
    margin: 3rem 0;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .referral-levels {
        grid-template-columns: 1fr;
    }
    
    .percentage-number {
        font-size: 3rem;
    }
}

/* --- Referral Tree Structure Design --- */
.referral-tree-container {
    position: relative;
    margin: 4rem 0;
    overflow-x: auto;
}
.referral-tree {
    position: relative;
    min-width: 1200px;
    padding: 2rem 0;
}
.tree-root {
    text-align: center;
    margin-bottom: 3rem;
}
.root-node {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 10;
}
.root-node::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #FF6B6B, transparent);
}
.root-node .node-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.root-node h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
.root-node p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}
.tree-level {
    margin-bottom: 3rem;
    position: relative;
}
.level-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.level-title h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}
.level-title p {
    margin: 0.5rem 0 0 0;
    color: var(--muted-color);
    font-size: 0.9rem;
}
.tree-branches {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.branch-line {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}
.branch-nodes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.branch-node {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 150px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.branch-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}
.branch-node::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary-color);
}
.branch-node .node-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.branch-node h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}
.commission {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}
.level-1 .branch-node {
    border-color: #FF6B6B;
}
.level-1 .branch-node .node-icon {
    color: #FF6B6B;
}
.level-1 .branch-node .commission {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}
.level-2 .branch-node {
    border-color: #4ECDC4;
}
.level-2 .branch-node .node-icon {
    color: #4ECDC4;
}
.level-2 .branch-node .commission {
    background: linear-gradient(135deg, #4ECDC4, #6EE7DF);
}
.level-3 .branch-node {
    border-color: #45B7D1;
}
.level-3 .branch-node .node-icon {
    color: #45B7D1;
}
.level-3 .branch-node .commission {
    background: linear-gradient(135deg, #45B7D1, #67C9E1);
}
.level-4 .branch-node {
    border-color: #96CEB4;
}
.level-4 .branch-node .node-icon {
    color: #96CEB4;
}
.level-4 .branch-node .commission {
    background: linear-gradient(135deg, #96CEB4, #B8E6C8);
}
.level-5 .branch-node {
    border-color: #FFEAA7;
}
.level-5 .branch-node .node-icon {
    color: #FFB347;
}
.level-5 .branch-node .commission {
    background: linear-gradient(135deg, #FFEAA7, #FFF2C7);
    color: #333;
}
.tree-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.legend-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
}
.legend-item span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}
@media (max-width: 1200px) {
    .referral-tree {
        min-width: 100%;
        padding: 1rem;
    }
    .branch-nodes {
        gap: 1rem;
    }
    .branch-node {
        min-width: 120px;
        padding: 1rem;
    }
}
@media (max-width: 768px) {
    .referral-tree {
        min-width: 100%;
    }
    .branch-nodes {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .branch-node {
        width: 100%;
        max-width: 200px;
    }
    .tree-legend {
        flex-direction: column;
        align-items: center;
    }
    .legend-item {
        width: 100%;
        justify-content: center;
    }
} /* Additional styles for concept-vision page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

.concept-hero {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.concept-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
}

.concept-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.highlight-quote {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.innovation-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    margin: 3rem 0;
}

.innovation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.innovation-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.innovation-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.nia-support {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.nia-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.sharing-economy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.economy-pillar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.economy-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.economy-icon {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .concept-card {
        padding: 2rem;
    }
    
    .innovation-features {
        grid-template-columns: 1fr;
    }
} /* Additional styles for contact page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

/* Modern Left-Right Contact Layout */
.contact-info-container {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-info-container .row.align-items-stretch {
    min-height: 320px;
}

.border-end-md {
    border-right: 1px solid #e9ecef;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    min-height: 100px;
}

.contact-info-item.h-100 {
    height: 100%;
}

.contact-info-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    position: relative;
}

.contact-info-icon.big {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    border-radius: 16px;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.contact-info-text {
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Reduce spacing between right column contact items */
.contact-info-container .col-md-6:last-child .contact-info-item {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 0.2rem;
}

.contact-info-container .col-md-6:last-child .contact-info-item + .contact-info-item {
    margin-top: 0.2rem;
}

@media (max-width: 991.98px) {
    .contact-info-container .row.align-items-stretch {
        flex-direction: column;
    }
    
    .border-end-md {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .contact-info-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-container .col-md-6:last-child .contact-info-item {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-container {
        border-radius: 12px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .contact-info-icon, .contact-info-icon.big {
        align-self: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-title {
        font-size: 1.05rem;
    }
    
    .contact-info-text {
        font-size: 0.97rem;
    }
}

/* Enhanced Contact Cards */
.contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-icon::after {
    opacity: 0.6;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.contact-card:hover .contact-title::after {
    width: 50px;
}

.contact-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-text a:hover::after {
    width: 100%;
}

/* Special styling for different contact types */
.contact-card[data-type="address"] .contact-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.contact-card[data-type="phone"] .contact-icon {
    background: linear-gradient(135deg, #007bff, #6610f2);
}

.contact-card[data-type="email"] .contact-icon {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.contact-card[data-type="hours"] .contact-icon {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} /* Additional styles for shops page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 100px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

.shop-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

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

.shop-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.shop-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    min-width: 48px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: auto;
    max-width: 80%;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.discount-badge {
    position: absolute;
    top: 48px;
    right: 16px;
    background: linear-gradient(135deg, var(--error-primary), var(--error-light));
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    min-width: 48px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: auto;
    max-width: 80%;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.shop-card:hover .shop-badge {
    transform: translateY(5px);
}

.shop-content {
    padding: 1.5rem;
}

.shop-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.shop-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.shop-stars {
    color: #ffc107;
}

.shop-rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.shop-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.shop-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-tag {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.shop-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-view:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-follow {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    background: var(--primary-color);
    color: white;
}

.filter-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-select, .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.5rem 0.75rem;
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.stats-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 2rem; */
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .shops-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-actions {
        flex-direction: column;
    }
}

/* Shop Detail Page Styles */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 110px !important;
    min-height: 50vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    padding: 4rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-location {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.hero-section .shop-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: static;
}

.info-card, .sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--brand-orange, #FF6B35);
    padding-bottom: 0.5rem;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.promotion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.promotion-image img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
}

.promotion-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.promotion-description {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.promotion-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-item i {
    width: 20px;
    flex-shrink: 0;
}

.benefits-list .benefit-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-list .benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.points-info {
    padding: 2rem;
}

.points-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.points-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.review-item {
    padding: 1rem 0;
}

.review-item:last-child {
    border-bottom: none !important;
}

.review-header {
    margin-bottom: 0.5rem;
}

.review-user {
    font-weight: 600;
    font-size: 1rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-comment {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Button Styles */
.btn-outline-brand-orange {
    color: var(--brand-orange, #FF6B35);
    border-color: var(--brand-orange, #FF6B35);
    background: transparent;
}

.btn-outline-brand-orange:hover {
    background-color: var(--brand-orange, #FF6B35);
    border-color: var(--brand-orange, #FF6B35);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card, .sidebar-card {
        padding: 1.5rem;
    }
}

/* =============================
   BREADCRUMB STYLES (moved from color-schema.css)
   ============================= */
.breadcrumb-section {
    border-bottom: 1px solid var(--border-primary, #e9ecef);
    background: var(--bg-primary, #fff);
    position: relative;
    z-index: 10;
}

/* Enhanced breadcrumb for hero section */
.hero-section .breadcrumb-brand {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    margin: 0;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-brand {
    background: transparent;
    padding: 8px 0;
    margin: 0;
    border-radius: 0;
}

.breadcrumb-brand .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hero section breadcrumb items */
.hero-section .breadcrumb-brand .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-brand .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-muted, #495057);
    font-weight: 600;
    margin: 0 10px;
    font-size: 0.9rem;
}

/* Hero section breadcrumb separators */
.hero-section .breadcrumb-brand .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin: 0 12px;
    font-size: 0.9rem;
}

.breadcrumb-brand .breadcrumb-item a {
    color: var(--link-primary, #FF6B35);
    text-decoration: none;
    transition: var(--transition-fast, all 0.15s ease);
    padding: 6px 10px;
    border-radius: var(--border-radius-sm, 8px);
    display: inline-block;
}

/* Hero section breadcrumb links */
.hero-section .breadcrumb-brand .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-brand .breadcrumb-item a:hover {
    color: var(--link-hover, #E06600);
    background-color: rgba(255, 107, 53, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Hero section breadcrumb links hover */
.hero-section .breadcrumb-brand .breadcrumb-item a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.breadcrumb-brand .breadcrumb-item.active span {
    color: var(--brand-orange, #FF6B35);
    font-weight: 700;
    padding: 6px 10px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius-sm, 8px);
    display: inline-block;
}

/* Hero section active breadcrumb */
.hero-section .breadcrumb-brand .breadcrumb-item.active span {
    color: #ffffff;
    font-weight: 700;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Icons in breadcrumb */
.hero-section .breadcrumb-brand .breadcrumb-item i {
    margin-right: 6px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .breadcrumb-brand .breadcrumb-item {
        font-size: 0.8rem;
    }
    .breadcrumb-brand .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 4px;
    }
    .breadcrumb-brand .breadcrumb-item a,
    .breadcrumb-brand .breadcrumb-item.active span {
        padding: 2px 6px;
    }
    
    /* Hero section mobile */
    .hero-section .breadcrumb-brand {
        padding: 8px 12px;
        border-radius: 20px;
    }
    .hero-section .breadcrumb-brand .breadcrumb-item a,
    .hero-section .breadcrumb-brand .breadcrumb-item.active span {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
} 

/* Remove scale/transform effect from shop image on hover */
.shop-image,
.shop-image:hover,
.shop-card:hover .shop-image {
    transform: none !important;
} /* Additional styles for sponsors page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

.partnership-stats {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.sponsor-category {
    padding: 4rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.government-badge {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.local-badge {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

.academic-badge {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

.private-badge {
    background: linear-gradient(135deg, #E67E22, #D35400);
}

.sponsor-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.sponsor-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.sponsor-description {
    color: var(--muted-color);
    line-height: 1.6;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .sponsor-card {
        padding: 1.5rem;
    }
} /* FrontendV2 Components Styles */

/* Import all component styles */

/* Common component styles */
.component-section {
    padding: 4rem 0;
}

.component-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.component-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.component-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.component-subtitle {
    color: var(--muted-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.component-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.component-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

.component-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .component-section {
        padding: 2rem 0;
    }
    
    .component-title {
        font-size: 1.3rem;
    }
} /* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #4ECDC4;
    --success-color: #00C851;
    --warning-color: #FF8800;
    --danger-color: #FF4444;
    --dark-color: #2E3440;
    --darker-color: #1E1E1E;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Kanit', sans-serif;
    --font-secondary: 'Sarabun', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    padding: 0.5rem 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--dark-color);
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    border-radius: 8px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    color: var(--gray-700);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.navbar-nav .nav-link.btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white !important;
}

.navbar-nav .nav-link.btn.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    /* min-height: 60vh; */
    display: flex;
    padding-top: 120px;
    padding-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    position: relative;
    z-index: 2;
    border: none;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--white-color), rgba(255, 255, 255, 0.9));
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Floating Cards Animation */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s ease-in-out infinite;
    max-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 80px;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.2;
}

.floating-card small {
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.card-1 {
    top: 5%;
    right: 15%;
    animation-delay: 0s;
    z-index: 5;
}

.card-2 {
    top: 25%;
    left: 5%;
    animation-delay: 2s;
    z-index: 4;
}

.card-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
    z-index: 3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(1deg);
    }
    50% {
        transform: translate(-5px, -20px) rotate(-1deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(1deg);
    }
}

/* New Hero Elements */
.achievement-badge {
    text-align: left;
}

.achievement-badge .badge {
    font-size: 0.9rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #F7931E, #FFB84D) !important;
    color: #333 !important;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(247, 147, 30, 0.5);
    }
}

.highlight-text {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F7931E, #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Hero Testimonial */
.hero-testimonial {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    text-align: left;
}

.testimonial-text {
    color: #333;
    font-style: italic;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc3545, #e9515f);
    border-radius: 12px;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(220, 53, 69, 0.3);
    animation: urgency-pulse 3s infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
}

.urgency-content {
    color: white;
    text-align: center;
}

.urgency-text {
    font-size: 0.9rem;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Enhanced Buttons */
.pulse-button {
    animation: pulse-button 2s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.small-text {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Enhanced Floating Cards */
.floating-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.floating-card i {
    font-size: 1.8rem !important;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.floating-card span {
    font-weight: 600 !important;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.2;
}

.floating-card small {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.2rem;
    text-align: center;
}

.card-4 {
    top: 75%;
    left: 15%;
    animation-delay: 1s;
    z-index: 2;
}

.card-5 {
    bottom: 5%;
    right: 25%;
    animation-delay: 3s;
    z-index: 1;
}

/* Success Stories */
.success-stories {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.success-story {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 220px;
    animation: float 8s ease-in-out infinite;
}

.story-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0.5s;
}

.story-2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3.5s;
}

.story-avatar img {
    width: 50px;
    height: 50px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-content {
    text-align: left;
}

.story-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

.story-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

/* LINE Official */
.line-official {
    text-align: center;
}

.line-official small {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.scroll-mouse {
    width: 32px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 6px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    margin-top: 8px;
    animation: scroll-wheel-move 1.2s infinite ease-in-out;
}

@keyframes scroll-wheel-move {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hide scroll indicator when scrolled */
.scroll-indicator.hide {
    opacity: 0;
    pointer-events: none;
}

/* Categories Section */
.categories-section {
    padding: var(--section-padding);
}

.category-card {
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all var(--transition);
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card-big{
    height: 180px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

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

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    margin-bottom: 0.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.shop-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Category card animations */
.category-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

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

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Shops Section */
.shops-section {
    padding: var(--section-padding);
}

.shop-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.shop-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.shop-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: var(--transition);
}

.shop-card:hover .shop-image img {
    transform: none;
}

.discount-badge {
    position: absolute;
    /* top: 15px; */
    left: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.shop-card:hover .shop-overlay {
    opacity: 1;
}

.shop-info {
    padding: 1.5rem;
}

.shop-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.shop-location {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
}

.rating-text {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* News Section */
.news-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.featured-news {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.news-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-sidebar {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: -moz-fit-content;
    height: fit-content;
}

.sidebar-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item-date {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-item h6 {
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.qr-code-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    box-shadow: var(--box-shadow);
}

.qr-code {
    margin: 1.5rem 0;
}

.qr-code img {
    max-width: 200px;
    border-radius: var(--border-radius);
}

.line-badge {
    background: #00C300;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-info h5 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: auto;
    margin-bottom: 1rem;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    position: relative;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid var(--primary-color);
}

.points-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.points-badge i {
    font-size: 0.6rem;
}

.reviewer-details h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.review-time {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.shop-info {
    text-align: right;
}

.shop-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: flex-end;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.2rem;
}

.shop-points {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.shop-name-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.shop-name-header .shop-name {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.review-rating .stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-content {
    margin-bottom: 1rem;
}

.review-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-images {
    margin-bottom: 1rem;
}

.image-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.image-grid.single {
    grid-template-columns: 1fr;
    max-width: 200px;
}

.review-img {
    width: 100%;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.review-img:hover {
    transform: scale(1.05);
}

.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.like-btn,
.share-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 20px;
}

.like-btn:hover {
    color: var(--danger-color);
    background: rgba(255, 68, 68, 0.1);
}

.like-btn.liked {
    color: var(--danger-color);
}

.like-btn.liked i {
    color: var(--danger-color);
}

.share-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.like-btn i,
.share-btn i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
}

.bg-darker {
    background: var(--darker-color) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer h6 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

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

.social-link {
    padding: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Button Styles */
.btn {
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.active>.page-link, .page-link.active{
    background-color: var(--primary-color);;
    border-color: var(--brand-orange-dark);;
}

.page-link:hover{
    color:var(--brand-orange-dark);
}
.page-link{
    color:var(--brand-orange-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .floating-card {
        max-width: 150px;
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }

    .floating-cards-container{
        display: none !important;
    }
}

@media (max-width: 768px) {
    .floating-cards-container{
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .hero-image {
        margin-top: 1rem;
        height: auto;
        display: none; /* Hide the empty hero-image container on mobile */
    }
    
    .success-stories {
        gap: 1rem;
    }
    
    .features-section .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .news-section .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .category-card {
        height: 100px;
        padding: 1rem 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-name {
        font-size: 0.8rem;
    }
    
    .shop-count {
        font-size: 0.7rem;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
    
    /* Scroll indicator mobile adjustments */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-mouse {
        width: 28px;
        height: 42px;
    }
    
    .scroll-wheel {
        width: 5px;
        height: 10px;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0 1.5rem 0;
    }

    .floating-cards-container{
        display: none !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .shop-info {
        padding: 1rem;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .qr-code-section {
        text-align: center;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .shop-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shop-name-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-rating {
        margin-top: 0.5rem;
    }
    
    .reviewer-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .points-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .review-img {
        height: 120px;
    }
    
    .category-card {
        height: 120px;
        padding: 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-name {
        font-size: 0.7rem;
    }
    
    .shop-count {
        font-size: 0.6rem;
    }
    
    .back-to-top {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    .achievement-badge {
        right: 10px;
        top: 10px;
    }
    
    .achievement-badge .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-testimonial {
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .testimonial-author {
        font-size: 0.7rem;
    }
    
    .urgency-banner {
        padding: 0.5rem;
    }
    
    .urgency-text {
        font-size: 0.8rem;
    }
    
    .countdown-timer {
        font-size: 0.7rem;
    }
    
    .success-story {
        padding: 0.5rem;
    }
    
    .story-amount {
        font-size: 0.8rem;
    }
    
    .story-text {
        font-size: 0.7rem;
    }
    
    .story-avatar img {
        width: 30px;
        height: 30px;
    }
    
    .line-official small {
        font-size: 0.7rem;
    }
    
    .small-text {
        font-size: 0.6rem;
    }
    
    /* Scroll indicator small screen adjustments */
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-mouse {
        width: 24px;
        height: 36px;
    }
    
    .scroll-wheel {
        width: 4px;
        height: 8px;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* Extra small devices - optimize hero height */
@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 0 1rem 0;
    }
    
    .hero-stats {
        margin-bottom: 1.5rem;
    }
    
    .urgency-banner {
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding-bottom: 1rem;
    }

    .floating-cards-container{
        display: none !important;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes heartFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-60px) scale(0.8);
        opacity: 0;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.notification-error {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.notification-warning {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.notification-info {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

/* Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
} /* ========================================
   Gift & Give Professional Color Schema
   ======================================== */

/* CSS Variables - Core Brand Palette */
:root {
    /* ===== BRAND COLORS ===== */
    --brand-orange: #FF6B35;
    --brand-orange-dark: #E06600;
    --brand-orange-light: #FF8E53;
    --brand-yellow: #F7931E;
    --brand-yellow-light: #FFB347;
    --brand-yellow-dark: #D68910;

    /* ===== SEMANTIC COLORS ===== */
    /* Success Colors */
    --success-primary: #28A745;
    --success-light: #58D68D;
    --success-dark: #1E7E34;
    
    /* Warning Colors */
    --warning-primary: #FFC107;
    --warning-light: #FFD54F;
    --warning-dark: #E0A800;
    
    /* Error Colors */
    --error-primary: #DC3545;
    --error-light: #F1948A;
    --error-dark: #C82333;
    
    /* Info Colors */
    --info-primary: #17A2B8;
    --info-light: #7FB3D3;
    --info-dark: #138496;

    /* ===== TYPOGRAPHY COLORS ===== */
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --text-muted: #495057;
    --text-light: #ADB5BD;
    
    /* Link Colors */
    --link-primary: #FF6B35;
    --link-hover: #E06600;
    --link-visited: #D68910;

    /* ===== BACKGROUND COLORS ===== */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #E9ECEF;
    
    /* ===== BORDER COLORS ===== */
    --border-primary: #E9ECEF;
    --border-secondary: #DEE2E6;
    --border-focus: #FF6B35;

    /* ===== CATEGORY COLORS ===== */
    /* Food Categories */
    --category-northern-primary: #FF6B35;
    --category-northern-secondary: #FF8E53;
    --category-northern-tertiary: #E06600;
    
    --category-isaan-primary: #FF4757;
    --category-isaan-secondary: #FF6B7A;
    --category-isaan-tertiary: #E63946;
    
    --category-thai-primary: #9B59B6;
    --category-thai-secondary: #BB8FCE;
    --category-thai-tertiary: #8E44AD;
    
    --category-international-primary: #E74C3C;
    --category-international-secondary: #F1948A;
    --category-international-tertiary: #C0392B;

    /* Beverage Categories */
    --category-coffee-primary: #D68910;
    --category-coffee-secondary: #E67E22;
    --category-coffee-tertiary: #B7950B;
    
    --category-drinks-primary: #17A2B8;
    --category-drinks-secondary: #7FB3D3;
    --category-drinks-tertiary: #138496;

    /* Service Categories */
    --category-buffet-primary: #28A745;
    --category-buffet-secondary: #58D68D;
    --category-buffet-tertiary: #1E7E34;
    
    --category-hotel-primary: #17A2B8;
    --category-hotel-secondary: #7FB3D3;
    --category-hotel-tertiary: #138496;
    
    --category-dessert-primary: #E91E63;
    --category-dessert-secondary: #F48FB1;
    --category-dessert-tertiary: #C2185B;
    
    --category-bakery-primary: #FF9800;
    --category-bakery-secondary: #FFB74D;
    --category-bakery-tertiary: #E68900;

    /* ===== EFFECTS & SPACING ===== */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(255, 107, 53, 0.15);
    --box-shadow-card: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --bs-pagination-active-bg: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-border-color: var(--brand-orange);
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color) !important;
    background: var(--bs-pagination-active-bg) !important;
    border-color: var(--bs-pagination-active-border-color) !important;
    box-shadow: var(--box-shadow) !important;
}

/* ========================================
   UTILITY CLASSES - BACKGROUND COLORS
   ======================================== */

/* Brand Background Colors */
.bg-brand-orange { background-color: var(--brand-orange) !important; }
.bg-brand-orange-dark { background-color: var(--brand-orange-dark) !important; }
.bg-brand-orange-light { background-color: var(--brand-orange-light) !important; }
.bg-brand-yellow { background-color: var(--brand-yellow) !important; }
.bg-brand-yellow-light { background-color: var(--brand-yellow-light) !important; }
.bg-brand-yellow-dark { background-color: var(--brand-yellow-dark) !important; }

/* Semantic Background Colors */
.bg-success { background-color: var(--success-primary) !important; }
.bg-success-light { background-color: var(--success-light) !important; }
.bg-success-dark { background-color: var(--success-dark) !important; }

.bg-warning { background-color: var(--warning-primary) !important; }
.bg-warning-light { background-color: var(--warning-light) !important; }
.bg-warning-dark { background-color: var(--warning-dark) !important; }

.bg-error { background-color: var(--error-primary) !important; }
.bg-error-light { background-color: var(--error-light) !important; }
.bg-error-dark { background-color: var(--error-dark) !important; }

.bg-info { background-color: var(--info-primary) !important; }
.bg-info-light { background-color: var(--info-light) !important; }
.bg-info-dark { background-color: var(--info-dark) !important; }

/* Surface Background Colors */
.bg-primary { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-tertiary { background-color: var(--bg-tertiary) !important; }

/* ========================================
   UTILITY CLASSES - TEXT COLORS
   ======================================== */

/* Brand Text Colors */
.text-brand-orange { color: var(--brand-orange) !important; }
.text-brand-orange-dark { color: var(--brand-orange-dark) !important; }
.text-brand-orange-light { color: var(--brand-orange-light) !important; }
.text-brand-yellow { color: var(--brand-yellow) !important; }
.text-brand-yellow-light { color: var(--brand-yellow-light) !important; }
.text-brand-yellow-dark { color: var(--brand-yellow-dark) !important; }

/* Semantic Text Colors */
.text-success { color: var(--success-primary) !important; }
.text-success-light { color: var(--success-light) !important; }
.text-success-dark { color: var(--success-dark) !important; }

.text-warning { color: var(--warning-primary) !important; }
.text-warning-light { color: var(--warning-light) !important; }
.text-warning-dark { color: var(--warning-dark) !important; }

.text-error { color: var(--error-primary) !important; }
.text-error-light { color: var(--error-light) !important; }
.text-error-dark { color: var(--error-dark) !important; }

.text-info { color: var(--info-primary) !important; }
.text-info-light { color: var(--info-light) !important; }
.text-info-dark { color: var(--info-dark) !important; }

/* Typography Text Colors */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }

/* Link Text Colors */
.text-link { color: var(--link-primary) !important; }
.text-link-hover { color: var(--link-hover) !important; }
.text-link-visited { color: var(--link-visited) !important; }

/* ========================================
   UTILITY CLASSES - BORDER COLORS
   ======================================== */

/* Brand Border Colors */
.border-brand-orange { border-color: var(--brand-orange) !important; }
.border-brand-orange-dark { border-color: var(--brand-orange-dark) !important; }
.border-brand-orange-light { border-color: var(--brand-orange-light) !important; }
.border-brand-yellow { border-color: var(--brand-yellow) !important; }
.border-brand-yellow-light { border-color: var(--brand-yellow-light) !important; }
.border-brand-yellow-dark { border-color: var(--brand-yellow-dark) !important; }

/* Semantic Border Colors */
.border-success { border-color: var(--success-primary) !important; }
.border-success-light { border-color: var(--success-light) !important; }
.border-success-dark { border-color: var(--success-dark) !important; }

.border-warning { border-color: var(--warning-primary) !important; }
.border-warning-light { border-color: var(--warning-light) !important; }
.border-warning-dark { border-color: var(--warning-dark) !important; }

.border-error { border-color: var(--error-primary) !important; }
.border-error-light { border-color: var(--error-light) !important; }
.border-error-dark { border-color: var(--error-dark) !important; }

.border-info { border-color: var(--info-primary) !important; }
.border-info-light { border-color: var(--info-light) !important; }
.border-info-dark { border-color: var(--info-dark) !important; }

/* Standard Border Colors */
.border-primary { border-color: var(--border-primary) !important; }
.border-secondary { border-color: var(--border-secondary) !important; }
.border-focus { border-color: var(--border-focus) !important; }

/* ========================================
   GRADIENT UTILITY CLASSES
   ======================================== */

/* Brand Gradients */
.gradient-brand-primary {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)) !important;
}

.gradient-brand-secondary {
    background: linear-gradient(135deg, var(--brand-orange-light), var(--brand-yellow-light)) !important;
}

.gradient-brand-accent {
    background: linear-gradient(135deg, #FFD899, #FEAC55) !important;
}

/* Semantic Gradients */
.gradient-success {
    background: linear-gradient(135deg, var(--success-primary), var(--success-light)) !important;
}

.gradient-warning {
    background: linear-gradient(135deg, var(--warning-primary), var(--warning-light)) !important;
}

.gradient-error {
    background: linear-gradient(135deg, var(--error-primary), var(--error-light)) !important;
}

.gradient-info {
    background: linear-gradient(135deg, var(--info-primary), var(--info-light)) !important;
}

/* Category Gradients */
.gradient-category-northern {
    background: linear-gradient(135deg, var(--category-northern-primary), var(--category-northern-secondary)) !important;
}

.gradient-category-isaan {
    background: linear-gradient(135deg, var(--category-isaan-primary), var(--category-isaan-secondary)) !important;
}

.gradient-category-coffee {
    background: linear-gradient(135deg, var(--category-coffee-primary), var(--category-coffee-secondary)) !important;
}

.gradient-category-buffet {
    background: linear-gradient(135deg, var(--category-buffet-primary), var(--category-buffet-secondary)) !important;
}

.gradient-category-hotel {
    background: linear-gradient(135deg, var(--category-hotel-primary), var(--category-hotel-secondary)) !important;
}

.gradient-category-dessert {
    background: linear-gradient(135deg, var(--category-dessert-primary), var(--category-dessert-secondary)) !important;
}

.gradient-category-bakery {
    background: linear-gradient(135deg, var(--category-bakery-primary), var(--category-bakery-secondary)) !important;
}

/* Background Gradients */
.gradient-bg-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary)) !important;
}

.gradient-bg-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary)) !important;
}

.gradient-bg-hero {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)) !important;
}

/* ========================================
   COMPONENT STYLES - BUTTONS
   ======================================== */

/* Primary Button */
.btn-brand-primary {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.btn-brand-primary:hover {
    background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-yellow-dark));
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    color: white;
}

/* Secondary Button */
.btn-brand-secondary {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px solid var(--border-primary);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-brand-secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, var(--success-primary), var(--success-light));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--success-dark), var(--success-primary));
    color: white;
    transform: translateY(-2px);
}

/* Warning Button */
.btn-warning {
    background: linear-gradient(135deg, var(--warning-primary), var(--warning-light));
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--warning-dark), var(--warning-primary));
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Error Button */
.btn-error {
    background: linear-gradient(135deg, var(--error-primary), var(--error-light));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-error:hover {
    background: linear-gradient(135deg, var(--error-dark), var(--error-primary));
    color: white;
    transform: translateY(-2px);
}

/* Outline Buttons */
.btn-outline-brand-orange {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-outline-success {
    background: transparent;
    color: var(--success-primary);
    border: 2px solid var(--success-primary);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-outline-warning {
    background: transparent;
    color: var(--warning-primary);
    border: 2px solid var(--warning-primary);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ========================================
   COMPONENT STYLES - CARDS
   ======================================== */

/* Primary Card */
.card-brand-primary {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card-brand-primary:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-4px);
}

/* Category Card */
.card-category {
    background: linear-gradient(135deg, var(--category-northern-primary), var(--category-northern-secondary));
    color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-card);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.card-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.card-category:hover::before {
    opacity: 1;
}

.card-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Shop Card */
.card-shop {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.card-shop:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--brand-orange);
}

/* ========================================
   COMPONENT STYLES - FORMS
   ======================================== */

/* Input Fields */
.form-control-brand {
    background: var(--bg-primary);
    border: 2px solid var(--border-primary);
    color: var(--text-primary);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
}

.form-control-brand:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    outline: none;
}

.form-control-brand::-moz-placeholder {
    color: var(--text-light);
}

.form-control-brand::placeholder {
    color: var(--text-light);
}

/* Form Labels */
.form-label-brand {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

/* Form Help Text */
.form-text-brand {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 4px;
}

/* Form Validation */
.form-control-brand.is-valid {
    border-color: var(--success-primary);
}

.form-control-brand.is-invalid {
    border-color: var(--error-primary);
}

/* ========================================
   UTILITY CLASSES - EFFECTS
   ======================================== */

/* Shadows */
.shadow-brand { box-shadow: var(--box-shadow) !important; }
.shadow-brand-hover { box-shadow: var(--box-shadow-hover) !important; }
.shadow-card { box-shadow: var(--box-shadow-card) !important; }

/* Shop Card Specific Classes */
.shop-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transform: none !important;
    transition: none !important;
}

.shop-image:hover {
    transform: none !important;
}

.shop-card:hover .shop-image {
    transform: none !important;
}

.shop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.shop-content {
    padding: 1rem;
}

.shop-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.shop-category {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.shop-stars {
    display: flex;
    gap: 2px;
}

.shop-rating-text {
    font-size: 0.875rem;
}

.shop-location {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.shop-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.benefit-tag {
    padding: 2px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.shop-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-view {
    flex: 1;
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-follow {
    padding: 8px 12px;
    font-size: 0.875rem;
}

/* Border Radius */
.rounded-brand { border-radius: var(--border-radius) !important; }
.rounded-brand-sm { border-radius: var(--border-radius-sm) !important; }
.rounded-brand-lg { border-radius: var(--border-radius-lg) !important; }

/* Transitions */
.transition-brand { transition: var(--transition) !important; }
.transition-fast { transition: var(--transition-fast) !important; }

/* ========================================
   COMPONENT STYLES - PAGINATION
   ======================================== */

/* Pagination Container */
.pagination-brand {
    gap: 0.25rem;
}

/* Page Item */
.page-item-brand {
    margin: 0 2px;
}

/* Page Link */
.page-link-brand {
    background: var(--bg-primary);
    border: 2px solid var(--border-primary);
    color: var(--brand-orange);
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    min-width: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.page-link-brand:hover, .page-item-brand:not(.active):hover .page-link-brand {
    background: var(--brand-orange-light);
    border-color: var(--brand-orange);
    color: #fff;
    z-index: 2;
}

.page-item-brand.active .page-link-brand,
.active>.page-link,
.page-link.active {
    z-index: 3;
    color: #fff !important;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)) !important;
    border-color: var(--brand-orange) !important;
    box-shadow: var(--box-shadow) !important;
}

.page-item-brand.disabled .page-link-brand,
.disabled>.page-link {
    background: var(--bg-tertiary) !important;
    border-color: var(--border-secondary) !important;
    color: var(--text-light) !important;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none !important;
}

.page-link-brand:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.page-link-brand .fas {
    font-size: 0.875rem;
}

/* Pagination Info */
.pagination-info {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    /* Mobile-specific color adjustments for better visibility */
    .card-category {
        background: linear-gradient(135deg, var(--category-northern-tertiary), var(--category-northern-primary));
    }
    
    .btn-brand-primary {
        background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-yellow-dark));
    }
    
    .gradient-brand-primary {
        background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-yellow-dark)) !important;
    }
}

/* ========================================
   DARK MODE SUPPORT (Future)
   ======================================== */

[data-theme="dark"] {
    --bg-primary: #1A1A1A;
    --bg-secondary: #2D2D2D;
    --bg-tertiary: #404040;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #AAAAAA;
    --border-primary: #404040;
    --border-secondary: #555555;
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus indicators */
.btn-brand-primary:focus,
.btn-brand-secondary:focus,
.form-control-brand:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-brand-primary,
    .btn-success,
    .btn-error {
        border: 2px solid currentColor;
    }
    
    .card-brand-primary,
    .card-shop {
        border: 2px solid var(--border-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .btn-brand-primary,
    .btn-brand-secondary,
    .card-brand-primary,
    .card-category,
    .card-shop {
        transition: none;
    }
    
    .btn-brand-primary:hover,
    .btn-brand-secondary:hover,
    .card-brand-primary:hover,
    .card-category:hover,
    .card-shop:hover {
        transform: none;
    }
} /* FrontendV2 Main Styles */

/* Import component styles */

/* Import existing styles */

/* Import contact form styles */

.contact-form .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.contact-form .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form .form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form .form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-form .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.contact-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.alert {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.alert.alert-success {
  background-color: #d1e7dd;
  color: #0f5132;
}

.alert.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.alert.alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

.alert.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* Additional custom styles can be added here */

