/* --- Base Settings & Variables --- */
:root {
    --primary-color: #2563EB;
    --accent-color: #F59E0B;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #F3F4F6;
    /* Keeping for compatibility */
    --nav-bg: #1F2937;
    --nav-text: #F9FAFB;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f8f8;
    /* Revert to match original feel or light gray */
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
}

/* --- Header Styles (Restored) --- */
header {
    background: linear-gradient(135deg, #0A2540 0%, #1C3F75 50%, #0A2540 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    position: relative;
    padding: 1.5em 0;
    z-index: 1000;
}

header a {
    color: #ffffff;
    text-decoration: none;
}

.site-title-container {
    text-align: center;
    margin-bottom: 5px;
}

header h1.site-title {
    font-size: 2.2em;
    margin: 0;
    line-height: 1.2;
}

.title-sub {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Header Social Icons Container (Top Right) */
.header-social-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-icon:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.header-social-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.header-social-icon:hover svg {
    fill: #0A2540;
}

/* Specific Hover Colors */
.header-social-icon.fb:hover svg {
    fill: #1877F2;
}

.header-social-icon.ig:hover svg {
    fill: #E1306C;
}

.header-social-icon.threads:hover svg {
    fill: #000000;
}

.header-social-icon.tiktok:hover svg {
    fill: #000000;
}

.header-social-icon.line:hover svg {
    fill: #06C755;
}

/* --- Social Icon Tooltips --- */
.header-social-icon {
    position: relative;
}

.header-social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(31, 41, 55, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1001;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    top: 120%;
}

/* Header Navigation */
header nav {
    width: 100%;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

header nav ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 1px;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

header nav ul li a:hover {
    color: #fff;
    border-bottom: 2px solid #3498db;
}

/* Hamburger - Only for mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    /* Adjust as needed */
    z-index: 1002;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* --- 主要內容與 Hero 區塊 (維持不變) --- */
main {
    padding: 60px 20px 40px 20px;
    /* 增加上方 padding 從 40px 改為 60px */
    max-width: 1200px;
    margin: auto;
}

.content-section {
    padding: 40px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 40px;
    border-bottom: 3px solid #3498db;
    display: inline-block;
    padding-bottom: 5px;
}

.hero {
    background: #fff;
    padding: 60px;
    margin-bottom: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cta-container {
    margin-top: 25px;
}

/* --- 按鈕樣式 (維持不變) --- */
#cta-button {
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

#cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}


/* 統一 Hero 區塊按鈕樣式 */
.hero-btn {
    width: 250px;
    /* 固定寬度確保一致 */
    display: inline-flex !important;
    /* 強制 Flex 以便置中 */
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 54px;
    /* 固定高度 */
    padding: 0 !important;
    /* 移除 ID 權重影響的 padding */
    margin: 5px;
    /* 增加間距 */
    font-size: 1.1em;
    border-radius: 50px;
    text-decoration: none;
}

/* --- New Services Section Styles --- */

:root {
    --primary-color: #2563EB;
    /* 專業藍 */
    --accent-color: #F59E0B;
    /* 亮點黃 */
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #F3F4F6;
}

/* 網格佈局系統 */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    /* 手機版單欄 */
    gap: 20px;
    padding: 20px 0;
    text-align: left;
    /* Reset text alignment for cards */
}

/* 平板以上改雙欄，電腦版改三欄 */
@media (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 卡片設計 */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    /* Removed default top border from previous design */
}

/* 手機版互動優化：按下去有回饋感 */
.service-card:active {
    transform: scale(0.98);
}

/* 電腦版互動優化：滑鼠移上去浮起 */
@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
}

/* Icon 區域 */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: #EFF6FF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* 標題與金句 */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.card-hook {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    /* 金句用品牌色強調 */
    margin-bottom: 12px;
    display: block;
    line-height: 1.4;
}

/* 說明文案 */
.card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* --- 第 6 張卡片：差異化設計 (王牌區) --- */
.service-card.special {
    background: linear-gradient(to bottom right, #ffffff, #fffdf5);
    border: 2px solid var(--accent-color);
    /* 黃色邊框 */
}

.service-card.special .card-icon {
    background: #FFFBEB;
    /* 淡黃色底 */
}

.service-card.special .card-hook {
    color: #D97706;
    /* 深黃色文字 */
}

/* 推薦標籤 */
.badge-recommend {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-bottom-left-radius: 12px;
}


/* --- 聯絡資訊與地圖區塊 (維持不變) --- */
.contact-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 修改為等寬 1:1 */
    gap: 30px;
    text-align: left;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    /* 確保高度填滿容器 */
    box-sizing: border-box;
    /* 包含 padding 在高度計算內 */
    display: flex;
    flex-direction: column;
}

/* ... existing styles ... */

.map-container {
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.map-container iframe {
    width: 100%;
    flex-grow: 1;
    /* 自動填滿剩餘空間，取代原本的 calc */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #3498db;
    border-bottom: 2px solid #eee;
    /* 改為淺灰色線條，與下方統一 */
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    /* 稍微加大標題 */
}

.contact-info p {
    font-size: 1.1em;
    /* 加大內文文字 */
    margin-bottom: 15px;
    /* 增加行距 */
    line-height: 1.6;
}

.contact-info a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}



/* --- 聯絡區塊的 Facebook 按鈕樣式 --- */
/* --- 聯絡區塊的 Facebook 按鈕樣式 --- */
.btn-fb {
    display: inline-block;
    background-color: #3b5998;
    /* Facebook 藍色 */
    color: white !important;
    /* 確保文字是白色 */
    padding: 12px 30px;
    /* 統一內距 */
    border-radius: 50px;
    /* 統一圓角 */
    font-weight: bold;
    text-decoration: none !important;
    transition: all 0.3s ease;
    /* 統一轉場效果 */
    font-size: 1.1em;
    /* 統一字體大小 */
    box-shadow: 0 4px 6px rgba(59, 89, 152, 0.2);
    /* 增加陰影 */
}

.btn-fb:hover {
    background-color: #2d4373;
    transform: translateY(-2px);
    /* 統一懸停效果 */
    box-shadow: 0 6px 12px rgba(59, 89, 152, 0.3);
}

/* --- Social Media Buttons (TikTok, Threads, Instagram) --- */

/* Basic Button Styles for Social Media */
.btn-social {
    display: inline-block;
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* margin: 5px; Removed to rely on flex gap */
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Specific Brand Colors */
.btn-tiktok {
    background-color: #010101;
    /* TikTok Black */
}

.btn-threads {
    background-color: #101010;
    /* Threads Black */
}

.btn-ig {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* --- Header Nav Link Styles for Social Media --- */
header nav ul li a.tiktok-link {
    color: #010101;
    background-color: #fff;
    padding: 1px 10px;
    line-height: 1.4;
    border-radius: 5px;
    font-weight: 700;
    border-bottom: none !important;
    font-size: 1rem;
    background-color: #e0e0e0;
    /* Slight grey to verify visibility */
}

header nav ul li a.threads-link {
    color: #101010;
    background-color: #fff;
    padding: 1px 10px;
    line-height: 1.4;
    border-radius: 5px;
    font-weight: 700;
    border-bottom: none !important;
    font-size: 1rem;
}

header nav ul li a.ig-link {
    color: #E1306C;
    /* Instagram Pink */
    background-color: #fff;
    padding: 1px 10px;
    line-height: 1.4;
    border-radius: 5px;
    font-weight: 700;
    border-bottom: none !important;
    font-size: 1rem;
}

header nav ul li a.tiktok-link:hover,
header nav ul li a.threads-link:hover,
header nav ul li a.ig-link:hover {
    background-color: #eee;
    opacity: 0.8;
}

/* --- 導航列上的 LINE 連結特殊樣式 --- */
header nav ul li a.line-link {
    color: #06C755;
    /* LINE 綠色 */
    background-color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 700;
    border-bottom: none !important;
    transition: background-color 0.3s;
}

header nav ul li a.line-link:hover {
    background-color: #eee;
    color: #06C755;
}

/* --- LINE 官方帳號 (整合樣式) --- */
.line-contact {
    margin-top: 30px;
    border-top: 1px solid #eee;
    /* 改為簡單的分隔線 */
    padding-top: 25px;
    /* 移除綠色邊框與卡片效果，使其融合 */
}

/* 標題樣式 */
/* 標題樣式調整 */
.line-contact h3 {
    color: #06C755;
    /* 改為 LINE 綠色強調 */
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    border: none;
    /* 移除底線 */
    padding: 0;
}

/* 內容排版 */
.line-contact-content {
    display: flex;
    align-items: center;
    /* justify-content: space-between; 移除此行，避免距離太遠 */
    gap: 60px;
    /* 改用固定的較大間距 */
    margin-top: 20px;
}

/* QR Code 圖片 */
.line-qr-img {
    max-width: 130px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
}

/* LINE 按鈕 */
.btn-line {
    display: inline-block;
    background-color: #06C755;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(6, 199, 85, 0.2);
    transition: all 0.3s ease;
}

.btn-line:hover {
    background-color: #05b04d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(6, 199, 85, 0.3);
}

@media (max-width: 480px) {
    .line-contact-content {
        flex-direction: column;
        align-items: flex-start;
    }


}


/* --- 頁尾樣式與 RWD (維持不變) --- */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
    margin-top: 50px;
    font-size: 0.9em;
}

/* ... RWD 樣式 (維持不變) ... */
@media (max-width: 900px) {
    .contact-info-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
        z-index: 1001;
        /* 確保 Header 層級最高 */
        padding: 10px 20px 30px 20px;
        /* Increased bottom padding to contain social icons */
        display: flex;
        /* Header 自體變為 flex */
        flex-direction: column;
        /* 垂直排列 H1 和 Nav */
        align-items: center;
    }

    header nav {
        width: 100%;
        justify-content: flex-end;
        /* 按鈕靠右 */
        position: static;
        /* 選單定位參考 Header */
    }

    /* 標題斷行處理 */
    header h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
        text-align: center;
    }

    .title-separator {
        display: none;
    }

    .title-sub {
        display: block;
        /* 強制換行 */
        font-size: 0.8em;
        /* 第二行字稍微小一點 */
        margin-top: 5px;
    }

    /* 漢堡選單顯現 */
    .hamburger {
        display: block;
    }

    /* 下拉式選單 */
    /* 下拉式選單 - 高質感設計 */
    header nav ul {
        display: none;
        /* 預設隱藏 */
        flex-direction: column;
        position: absolute;
        top: 100%;
        /* 接在 Header 下方 */
        right: 0;
        /* 質感漸層背景 + 毛玻璃效果 */
        background: linear-gradient(135deg, rgba(14, 39, 66, 0.98), rgba(28, 63, 117, 0.95));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 220px;
        /* 稍微加寬 */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        /* 更深邃的陰影 */
        border-radius: 0 0 0 15px;
        /* 圓角更滑順 */
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        z-index: 1000;
        margin: 0;
    }

    /* 當選單被激活時 */
    header nav ul.active {
        display: flex !important;
        /* 強制顯示 */
        animation: slideDown 0.3s ease forwards;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
    }

    header nav ul li a {
        display: block;
        padding: 16px 20px;
        color: #e6e6e6;
        font-weight: 500;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* 極細分隔線 */
        transition: all 0.3s ease;
        position: relative;
    }

    header nav ul li a:last-child {
        border-bottom: none;
    }

    header nav ul li a:hover {
        color: #fff;
        background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
        /* 中間發光效果 */
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    /* 簡單的滑動動畫 */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Title Fix */
    .brand-name {
        display: block;
        width: 100%;
        font-size: 1.2em;
        line-height: 1.2;
    }

    .brand-desc {
        display: block;
        width: 100%;
        font-size: 0.9em;
        margin-top: 5px;
        line-height: 1.2;
    }

    .title-separator {
        display: none;
    }

    /* Mobile Social Icons Fix */
    .header-social-icons {
        position: static;
        /* Disable absolute positioning */
        margin-top: 10px;
        /* Space below title */
        justify-content: center;
        /* Center icons */
        gap: 15px;
        /* Ensure z-index doesn't block hamburger */
        z-index: 100;
        position: relative;
        display: flex;
    }

    /* Tooltips on mobile: Allow showing if user slides/clicks */
    .header-social-icon::after {
        /* display: none !important; REMOVED to show tooltips */
    }

    /* Hamburger Z-Index Fix */
    .hamburger {
        z-index: 2000;
        cursor: pointer;
    }
}

/* End of @media (max-width: 768px) */

/* --- Contact Section Refinements --- */
/* --- Contact Section Refinements (New Design) --- */

.contact-intro {
    color: #1F2937;
    /* Darker gray (gray-800) for better visibility */
    margin-bottom: 24px;
    font-size: 1.25em;
    /* Larger font */
    font-weight: 700;
    /* Bold text */
    line-height: 1.4;
}

.info-group {
    margin-bottom: 24px;
}

.info-group h4 {
    margin: 0 0 8px 0;
    font-size: 1.15em;
    font-weight: 700;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-group p {
    margin: 0;
    line-height: 1.6;
    color: #374151;
}

.text-sm {
    font-size: 0.9em;
    color: #6B7280;
}

/* Phone Number Styling */
.phone-number {
    font-size: 1.5em;
    font-weight: 700;
    color: #2563EB;
    /* Blue-600 */
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
}

.phone-number:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* Map Button (Outline Style) */
.btn-map-outline {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    font-size: 0.9em;
    font-weight: 600;
    color: #2563EB;
    border: 1px solid #2563EB;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.btn-map-outline:hover {
    background: #EFF6FF;
}

/* Featured LINE CTA Box */
.line-cta-box {
    margin-top: 30px;
    padding: 24px;
    background-color: #F0FDF4;
    /* bg-green-50 */
    border: 1px solid #DCFCE7;
    /* border-green-100 */
    border-radius: 16px;
}

.line-cta-title {
    color: #166534;
    /* text-green-800 */
    font-weight: 700;
    margin: 0 0 4px 0;
    font-size: 1.1em;
}

.line-cta-desc {
    color: #15803d;
    /* text-green-600 */
    font-size: 0.9em;
    margin: 0 0 16px 0;
}

.line-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-line-block {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #06C755;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
    font-size: 1.1em;
}

.btn-line-block:hover {
    background-color: #05b04d;
}

/* Social Row at Bottom */
.social-row {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-label {
    font-size: 0.9em;
    color: #9CA3AF;
}

/* Reuse existing contact-social-icon styles but ensure they fit */
.contact-social-icons-inline {
    display: flex;
    gap: 12px;
}

/* Utility for responsive visibility */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Contact Social Icons (Small, bottom of contact info) */
.contact-social-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    /* Push to bottom if flex container allows */
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f2f5;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-icon svg {
    width: 20px;
    height: 20px;
    fill: #65676b;
    /* Subtle gray default */
    transition: fill 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-2px);
    background: #e4e6eb;
}

/* Hover colors */
.contact-social-icon.fb:hover svg {
    fill: #1877F2;
}

.contact-social-icon.ig:hover svg {
    fill: #E1306C;
}

.contact-social-icon.threads:hover svg {
    fill: #000000;
}

.contact-social-icon.tiktok:hover svg {
    fill: #000000;
}

/* --- Contact Social Icon Tooltips --- */
.contact-social-icon {
    position: relative;
    /* Ensure relative positioning for tooltip */
}

.contact-social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 140%;
    /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(31, 41, 55, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1001;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
    /* Slight animation up */
}

/* Navigation Button (Map) */
.btn-map-inline {
    display: inline-block;
    margin-top: 8px;
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95em;
    border: 1px solid #3498db;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-map-inline:hover {
    background: #3498db;
    color: white;
}