/*
Theme Name: Zubanwang
Theme URI: https://zubanwang.com
Author: Zubanwang Team
Author URI: https://zubanwang.com
Description: A professional real estate theme for showcasing lands and properties for renting. Features custom post types, image carousels, and comprehensive property details.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zubanwang
Tags: real-estate, property, rental, land, commercial

This theme, like WordPress, is licensed under the GPL.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Link Styles */
a,
a:link,
a:visited,
a:active {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #1a3a5c;
    text-decoration: none;
}

/* Override WordPress default link styles */
.entry-content a,
.entry-content a:link,
.entry-content a:visited,
.entry-content a:hover,
.entry-content a:active,
.content a,
.content a:link,
.content a:visited,
.content a:hover,
.content a:active {
    color: #555;
    text-decoration: none;
}

.entry-content a:hover,
.content a:hover {
    color: #1a3a5c;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    font-size: 28px;
    font-weight: bold;
    color: #1a3a5c;
    text-decoration: none;
}

/* Custom Logo Styles */
.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #1a3a5c;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-form input[type="text"],
.search-form input[type="submit"] {
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.search-form input[type="text"] {
    flex: 1;
}

.search-form input[type="submit"] {
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.search-form input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.product-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-content {
    padding: 20px;
}

.product-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a3a5c;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.product-card-description {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-link,
.product-card-link:link,
.product-card-link:visited,
.product-card-link:active {
    display: inline-block;
    padding: 10px 20px;
    background: #1a3a5c;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.product-card-link:hover {
    background: #0f2440;
    color: #fff !important;
}

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-main {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-section {
    margin-bottom: 40px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a3a5c;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1a3a5c;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -40px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #1a3a5c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 3px;
    background: #1a3a5c;
}

.timeline-content h3 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Team Highlights */
.team-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.team-highlight {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
    color: #fff;
    border-radius: 8px;
}

.highlight-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
}

.highlight-text {
    font-size: 15px;
    opacity: 0.9;
}

/* Culture and Responsibility Lists */
.culture-list,
.responsibility-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.culture-list li,
.responsibility-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-left: 4px solid #1a3a5c;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.culture-list li strong,
.responsibility-list li strong {
    color: #1a3a5c;
}

.services-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.service-item:hover {
    background: #e9ecef;
}

.service-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* About Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a3a5c;
}

.contact-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: #1a3a5c;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #1a3a5c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #666;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e55a2b;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .team-highlights {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-header h1 {
        font-size: 32px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 14px;
        left: -35px;
    }
}

/* Single Product Page */
.single-product {
    background: #fff;
    padding: 40px 0;
}

.product-detail-header {
    margin-bottom: 40px;
}

.product-detail-header h1 {
    font-size: 36px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.product-detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    color: #666;
    font-size: 16px;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-container {
    position: relative;
    height: 500px;
    background: #f0f0f0;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #fff;
    overflow-x: auto;
}

.carousel-thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.carousel-thumbnail.active {
    border-color: #1a3a5c;
}

/* Product Details Section */
.product-details-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-info h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a3a5c;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.product-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.product-details-table tr {
    border-bottom: 1px solid #eee;
}

.product-details-table td {
    padding: 15px;
}

.product-details-table td:first-child {
    font-weight: 600;
    color: #1a3a5c;
    width: 200px;
    background: #f9f9f9;
}

.product-sidebar {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 22px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #ff6b35;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    background: #e55a2b;
}

/* Footer Styles */
.site-footer {
    background: #1a3a5c;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-details-section {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Archive Page */
.archive-header {
    background: #1a3a5c;
    color: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
}

.archive-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
}

.pagination .current,
.pagination a:hover {
    background: #1a3a5c;
    color: #fff;
    border-color: #1a3a5c;
}

/* Admin Import Button */
.import-products-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin: 20px 0;
}

.import-products-btn:hover {
    background: #1d4ed8;
}

/* Product Filters */
.product-filters {
    background: #fff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: #1a3a5c;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.filter-submit-btn {
    padding: 12px 30px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.filter-submit-btn:hover {
    background: #1d4ed8;
}

.filter-reset-btn {
    padding: 12px 20px;
    background: #fff;
    color: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-reset-btn:hover {
    background: #f5f5f5;
}

/* Responsive Filters */
@media (max-width: 768px) {
    .filter-form {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-actions {
        width: 100%;
    }
    
    .filter-submit-btn,
    .filter-reset-btn {
        flex: 1;
        text-align: center;
    }
}

/* Homepage Filter Section */
.homepage-filter-section {
    background: #f5f5f5;
    padding: 40px 0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.homepage-filters {
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero Filters */
.hero-filters {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-filters .filter-group label {
    color: #1a3a5c;
}

.hero-filters .filter-submit-btn {
    background: #fff;
    color: #1a3a5c;
    border: 2px solid #fff;
}

.hero-filters .filter-submit-btn:hover {
    background: #f5f5f5;
}

/* Featured Products Filters */
.featured-filters {
    margin-bottom: 40px;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.contact-card h2,
.contact-card h3 {
    color: #1a3a5c;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-detail {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail .label {
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.contact-detail .value {
    color: #333;
    flex: 1;
}

.contact-detail .value a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail .value a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.primary-contact {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
    color: #fff;
}

.primary-contact h2,
.primary-contact .label,
.primary-contact .value {
    color: #fff;
}

.primary-contact .value a {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.office-icon {
    font-size: 32px;
}

.office-header h3 {
    margin: 0;
}

.quick-contact {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

.quick-contact h3 {
    color: #fff;
}

.phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
}

.phone-btn:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-icon {
    font-size: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text small {
    font-size: 12px;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 24px;
}

.business-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.business-hours .hours-row:last-child {
    border-bottom: none;
}

.business-hours .day {
    color: #666;
    font-weight: 500;
}

.business-hours .time {
    color: #333;
    font-weight: 600;
}

.contact-tips ul {
    list-style: none;
    padding: 0;
}

.contact-tips li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.contact-tips li:before {
    content: \"?\";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-detail {
        flex-direction: column;
    }
    
    .contact-detail .label {
        margin-bottom: 5px;
    }
}
