/* References and Partners Pages Specific Styles */

/*--------------------------------------------------------------
# References Page Styles
--------------------------------------------------------------*/
.references-hero-section {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.references-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23e31e25" opacity="0.1"/><circle cx="80" cy="30" r="2" fill="%23e31e25" opacity="0.05"/><circle cx="60" cy="70" r="1" fill="%23e31e25" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.references-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 30, 37, 0.1);
    color: #e31e25;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(227, 30, 37, 0.2);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(227, 30, 37, 0.1);
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .text-red {
    color: #e31e25;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #e31e25;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e31e25, transparent);
}

/* References Grid Section */
.references-grid-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e31e25;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.reference-item {
    position: relative;
}

.reference-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #e31e25;
}

.reference-header {
    position: relative;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reference-logo {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-card:hover .reference-logo img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 37, 0.95), rgba(193, 17, 25, 0.95));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.reference-card:hover .overlay-content {
    transform: translateY(0);
}

.reference-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.reference-desc {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.reference-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 0;
}

.reference-tags .tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.reference-footer {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reference-info .company-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.service-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.service-indicator i {
    color: #e31e25;
    font-size: 12px;
}

.reference-status .status-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* References CTA Section */
.references-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-card {
    background: #fff;
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 30, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e31e25, #c11119);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 10px 30px rgba(227, 30, 37, 0.3);
}

.cta-icon i {
    font-size: 36px;
    color: #fff;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #e31e25, #c11119);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(227, 30, 37, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 37, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-cta-secondary {
    background: transparent;
    color: #e31e25;
    border: 2px solid #e31e25;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #e31e25;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 37, 0.3);
}

/*--------------------------------------------------------------
# Partners Page Styles
--------------------------------------------------------------*/
.partners-hero-section {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,35 85,35 65,50 75,75 50,60 25,75 35,50 15,35 40,35" fill="%23e31e25" opacity="0.05"/></svg>') repeat;
    pointer-events: none;
}

.partners-hero-content {
    position: relative;
    z-index: 2;
}

.partners-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.stat-card:hover {
    border-color: #e31e25;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 37, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-content .stat-number {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.stat-content .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Partners Grid Section */
.partners-grid-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-item {
    position: relative;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #e31e25;
}

.partner-logo-container {
    position: relative;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 37, 0.95), rgba(193, 17, 25, 0.95));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.partner-card:hover .overlay-content {
    transform: translateY(0);
}

.partner-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.partner-category {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.feature-tag i {
    font-size: 10px;
}

.partner-details-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partner-details-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.partner-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.level-badge i {
    font-size: 10px;
}

/* Partnership Benefits Section */
.partnership-benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefits-content {
    padding-right: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 30, 37, 0.1);
    color: #e31e25;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
}

.section-badge i {
    font-size: 14px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.benefits-title .text-red {
    color: #e31e25;
}

.benefits-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 37, 0.15);
    border-color: #e31e25;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 24px;
    color: #fff;
}

.benefit-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Partners CTA Section */
.partners-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partners-cta-section .cta-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 30, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.partners-cta-section .cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e31e25, #c11119);
}

.partners-cta-section .cta-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.partners-cta-section .cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(227, 30, 37, 0.3);
}

.partners-cta-section .cta-icon i {
    font-size: 28px;
    color: #fff;
}

.partners-cta-section .cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.partners-cta-section .cta-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.partners-cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta-outline {
    background: transparent;
    color: #e31e25;
    border: 2px solid #e31e25;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-cta-outline:hover {
    background: #e31e25;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 37, 0.3);
}

.partners-cta-section .btn-cta-primary {
    padding: 18px 30px;
    font-size: 14px;
    justify-content: center;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .partners-stats {
        gap: 20px;
    }
    
    .stat-card {
        min-width: 160px;
        padding: 25px 20px;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .partners-cta-section .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .partners-cta-section .cta-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .references-hero-section,
    .partners-hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .partners-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .references-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reference-header,
    .partner-logo-container {
        height: 160px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-content h5 {
        font-size: 18px;
    }
    
    .partners-cta-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .hero-badge,
    .section-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-card {
        min-width: 140px;
        padding: 20px 15px;
    }
    
    .stat-content .stat-number {
        font-size: 24px;
    }
    
    .cta-card {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-desc {
        font-size: 16px;
    }
    
    .benefits-title {
        font-size: 28px;
    }
    
    .partners-cta-section .cta-title {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Corporate Pages Sidebar Styles
--------------------------------------------------------------*/
.corporate-sidebar .sidebar-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e31e25;
}

.corporate-menu .corporate-menu-item,
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.corporate-menu-item:hover,
.corporate-menu-item.active,
.sidebar-menu li.active a,
.sidebar-menu li a:hover {
    background: #e31e25;
    color: white;
    text-decoration: none;
}

.corporate-menu-item i,
.sidebar-menu li a i {
    font-size: 16px;
    width: 16px;
}

.corporate-menu-item span,
.sidebar-menu li a span {
    font-weight: 500;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

/* Page Sidebar Styles */
.page-sidebar .sidebar-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.page-sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e31e25;
}

/* Quick Contact Sidebar */
.quick-contact-box .quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.quick-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.quick-contact-content h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 3px 0;
}

.quick-contact-content a {
    color: #e31e25;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.quick-contact-content a:hover {
    text-decoration: underline;
}

/* Social Media Sidebar */
.social-media-box .social-media-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-decoration: none;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 37, 0.05), transparent);
    transition: left 0.5s ease;
}

.social-media-item:hover::before {
    left: 100%;
}

.social-media-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.social-media-item.facebook .social-icon {
    background: #1877f2;
}

.social-media-item.twitter .social-icon {
    background: #1da1f2;
}

.social-media-item.linkedin .social-icon {
    background: #0a66c2;
}

.social-media-item.instagram .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-content {
    flex: 1;
}

.social-content h6 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 3px 0;
}

.social-content span {
    color: #666;
    font-size: 12px;
}

.social-arrow {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-media-item:hover .social-arrow {
    color: #e31e25;
    transform: translateX(3px);
}

.quick-service .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-corporate-primary {
    background: linear-gradient(135deg, #e31e25, #c11119);
    color: white;
    border: none;
}

.btn-corporate-primary:hover {
    background: linear-gradient(135deg, #c11119, #a00e15);
    color: white;
    transform: translateY(-2px);
}

.btn-corporate-outline {
    background: transparent;
    color: #e31e25;
    border: 2px solid #e31e25;
}

.btn-corporate-outline:hover {
    background: #e31e25;
    color: white;
}

.btn-cta-red {
    background: linear-gradient(135deg, #e31e25, #c11119);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-red:hover {
    background: linear-gradient(135deg, #c11119, #a00e15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 37, 0.3);
}

/* Contact Info */
.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #e31e25;
    font-size: 18px;
    margin-top: 2px;
    width: 20px;
}

.contact-item div strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.contact-item div span {
    color: #666;
    font-size: 14px;
}

.contact-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #e31e25;
    text-decoration: none;
    transform: translateX(3px);
}

.contact-item:hover .contact-link {
    color: #e31e25;
}

.contact-item:hover i {
    color: #c11119;
    transform: scale(1.1);
}

/* Sidebar Map Styles */
.sidebar-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-map-container iframe {
    width: 100%;
    display: block;
}

.map-address-info {
    padding: 20px;
    background: #f8f9fa;
    border-top: 2px solid #e31e25;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-content {
    flex: 1;
}

.address-content strong {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.address-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e31e25, #c11119);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #c11119, #a00e15);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 37, 0.3);
}

.directions-btn i {
    font-size: 10px;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .corporate-sidebar,
    .page-sidebar {
        margin-top: 40px;
    }
    
    .sidebar-map-container iframe {
        height: 200px;
    }
    
    .map-address-info {
        padding: 15px;
    }
    
    .address-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .directions-btn {
        align-self: center;
    }
}
