/* ===========================================
   广东洁能光伏清洗机独立站 - 新样式文件
   设计规范：科技感、工业感、清洁能源风格
   配色：蓝色、白色、深灰色
   =========================================== */

:root {
    /* 主色系 - 蓝色调 */
    --primary-blue: #0d6efd;
    --primary-blue-dark: #0b5ed7;
    --primary-blue-light: #3d8bfd;
    
    /* 辅助色 */
    --secondary-gray: #6c757d;
    --secondary-gray-light: #f8f9fa;
    --secondary-gray-dark: #343a40;
    
    /* 强调色 */
    --accent-green: #198754;
    --accent-yellow: #ffc107;
    --accent-red: #dc3545;
    
    /* 文字颜色 */
    --text-dark: #212529;
    --text-gray: #6c757d;
    --text-light: #f8f9fa;
    
    /* 阴影 */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* 边框 */
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    
    /* 间距 */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    
    /* 渐变 */
    --gradient-blue: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    --gradient-dark: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

/* ========== 基础重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ========== 通用样式 ========== */
.container {
    max-width: 1200px;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

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

.text-center .section-title-new::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ========== 导航栏 ========== */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

/* ========== Hero Section ========== */
.hero-section-new {
    background: var(--gradient-blue);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-tech.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.hero-section-new h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section-new .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* ========== 卡片样式 ========== */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.benefit-card {
    border: 1px solid #e9ecef;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* ========== 产品卡片 ========== */
.product-card-new {
    border: 1px solid #e9ecef;
    height: 100%;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-new:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-specs {
    background: var(--secondary-gray-light);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

/* ========== 优势卡片 ========== */
.advantage-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.advantage-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon-wrapper {
    transform: scale(1.1);
}

/* ========== 应用场景卡片 ========== */
.application-card-new {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.application-image {
    height: 200px;
    overflow: hidden;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-card-new:hover .application-image img {
    transform: scale(1.1);
}

.application-content {
    padding: 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* ========== 解决方案卡片 ========== */
.solution-card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.solution-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.5rem;
}

.solution-body {
    padding: 1.5rem;
}

.solution-body ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

/* ========== 证书展示 ========== */
.certificate-logo {
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.certificate-logo:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

/* ========== FAQ 手风琴 ========== */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background-color: white;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--secondary-gray-light);
}

/* ========== 表单样式 ========== */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ========== 按钮样式 ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ========== 固定联系按钮 ========== */
.fixed-contact-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-contact-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.fixed-contact-buttons a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background: #25D366;
}

.email-btn {
    background: var(--primary-blue);
}

.inquiry-btn {
    background: var(--accent-green);
}

/* ========== 页脚 ========== */
footer {
    background: var(--secondary-gray-dark);
    color: white;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .hero-section-new {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-section-new h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-new .lead {
        font-size: 1.1rem;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: var(--spacing-lg) 0;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
    }
    
    .fixed-contact-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .fixed-contact-buttons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section-new h1 {
        font-size: 2rem;
    }
    
    .section-title-new {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-image {
        height: 200px;
    }
}

/* ========== 动画效果 ========== */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* ========== 工具类 ========== */
.min-vh-80 {
    min-height: 80vh;
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-blue) !important;
}

.bg-gradient-dark {
    background: var(--gradient-dark) !important;
}

/* ========== 加载动画 ========== */
.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(13, 110, 253, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== 表格样式 ========== */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.table thead th {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* ========== 徽章样式 ========== */
.badge {
    padding: 0.5em 1em;
    font-weight: 600;
    border-radius: 50px;
}

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

.badge-success {
    background: var(--accent-green);
    color: white;
}

.badge-warning {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

/* ========== 工具提示 ========== */
.tooltip-inner {
    background: var(--secondary-gray-dark);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.tooltip-arrow::before {
    border-top-color: var(--secondary-gray-dark);
}

/* ========== 模态框 ========== */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-blue);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem;
}

/* ========== 进度条 ========== */
.progress {
    height: 0.5rem;
    border-radius: 50px;
    background-color: var(--secondary-gray-light);
}

.progress-bar {
    background: var(--primary-blue);
    border-radius: 50px;
}

/* ========== 分页 ========== */
.pagination .page-link {
    color: var(--primary-blue);
    border: 1px solid #dee2e6;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
}

.pagination .page-link:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pagination .page-item.active .page-link {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* ========== 自定义滚动条 ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}
/* ========== 产品页专用样式 ========== */
.product-hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 4rem;
}

.product-tags .badge {
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
}

.product-overview-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.step-icon {
    color: var(--primary-blue);
}

.workflow-diagram img {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-lg);
}

.benefit-item {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.related-product-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 120px;
}

.related-product-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.related-product-card img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.product-detail-images img {
    transition: transform 0.3s ease;
    border: 1px solid #dee2e6;
}

.product-detail-images img:hover {
    transform: scale(1.05);
}

/* 表格增强样式 */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-hero-section {
        padding: 6rem 0 3rem;
    }
    
    .product-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .related-product-card {
        height: auto;
    }
    
    .related-product-card .row {
        flex-direction: column;
    }
    
    .related-product-card .col-md-4 {
        width: 100%;
        height: 150px;
    }
    
    .related-product-card .col-md-8 {
        width: 100%;
    }
}

/* 打印样式 */
@media print {
    .fixed-contact-buttons,
    .navbar,
    footer {
        display: none;
    }
    
    .product-hero-section {
        background: none !important;
        color: black !important;
        padding: 2rem 0 !important;
    }
    
    .table {
        border: 1px solid #dee2e6;
    }
}

/* ========== 转运系统专用样式 ========== */
.section-bg-success {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%) !important;
    color: white;
}

.system-description h5 {
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.system-specifications ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.system-specifications ul li:last-child {
    border-bottom: none;
}

.system-diagram img {
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--accent-green);
    border: none;
}

.btn-success:hover {
    background: #146c43;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-success {
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.btn-outline-success:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== About Us专用样式 ========== */
.about-hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
    color: white;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-green);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.2rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-green);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--accent-green);
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    color: var(--accent-green);
}

.team-category-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-icon {
    color: var(--accent-green);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.capability-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.capability-content {
    padding: 1.5rem;
}

.capability-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.global-map img {
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.service-region {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-region:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-region h4 {
    color: var(--primary-color);
}

.section-bg-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
    color: white;
}

.contact-option {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    color: white;
}
