/* 全局樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft JhengHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 導航欄樣式 */
header {
    background-color: #5A717D;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.line-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.line-icon:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    font-size: 1.1em;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* 主要內容區域 */
main {
    margin-top: 80px;
}

/* 英雄區域樣式 */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

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

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* 特色區域樣式 */
.features {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* 服務區域樣式 */
.home-services {
    padding: 4rem 5%;
    background-color: #fff;
}

.home-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.home-service-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.home-service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.home-service-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.home-service-item p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-link {
    display: inline-block;
    padding: 10px 25px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background: #c0392b;
}

/* 頁尾樣式 */
footer {
    background-color: #5A717D;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* RWD 樣式 */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #5A717D;
        padding: 80px 2rem 2rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        width: 90%;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .home-services {
        padding: 3rem 5%;
    }

    .home-services h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-service-item {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .home-service-item h3 {
        font-size: 1.2rem;
    }

    .home-service-item p {
        font-size: 0.9rem;
    }

    .service-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .home-services {
        padding: 2rem 5%;
    }

    .home-services h2 {
        font-size: 1.5rem;
    }

    .home-services-grid {
        gap: 1rem;
    }

    .home-service-item {
        padding: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .home-service-item h3 {
        font-size: 1.1rem;
    }

    .home-service-item p {
        font-size: 0.85rem;
    }

    .service-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* 關於我們頁面樣式 */
.about-content {
    padding: 4rem 5%;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.values-list li:before {
    content: "•";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
}

/* 服務範疇頁面樣式 */
.services-content {
    padding: 4rem 5%;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item li:before {
    content: "→";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.service-process {
    text-align: center;
}

.service-process h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    position: relative;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

/* 服務費用頁面樣式 */
.pricing-content {
    padding: 4rem 5%;
    background-color: #fff;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-intro h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pricing-intro p {
    color: #666;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.pricing-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-item.featured {
    background-color: #fff;
    border: 2px solid #e74c3c;
    transform: scale(1.05);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 2rem;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-item li {
    margin-bottom: 1rem;
    color: #666;
}

.pricing-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pricing-button:hover {
    background-color: #c0392b;
}

.pricing-notes {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.pricing-notes h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-notes li:before {
    content: "•";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

/* 費用表格樣式 */
.pricing-table {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pricing-table h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: #f9f9f9;
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.pricing-table td:nth-child(2) {
    color: #e74c3c;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pricing-table {
        padding: 1rem;
        margin: 2rem auto;
        overflow-x: auto;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* 服務案例頁面樣式 */
.cases-content {
    padding: 4rem 5%;
    background-color: #fff;
}

.cases-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.cases-intro h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cases-intro p {
    color: #666;
    line-height: 1.8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.case-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.case-content {
    padding: 1.5rem;
    flex: 1;
}

.case-content h3 {
    color: #e60012;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.case-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.case-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.case-details {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: auto;
}

.case-details p {
    margin: 0.5rem 0;
    color: #666;
}

.cases-cta {
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.cases-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cases-cta p {
    color: #666;
    margin-bottom: 2rem;
}

/* 聯絡我們頁面樣式 */
.contact-content {
    padding: 4rem 5%;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.contact-info {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c0392b;
}

.map-section {
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #5A717D;
        padding: 80px 2rem 2rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    /* 漢堡選單動畫 */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .line-icon {
        width: 20px;
        height: 20px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-description {
        max-height: none;
    }
}

.home-services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.home-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2em;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.home-service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home-service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.home-service-item h3 {
    color: #333;
    font-size: 1.5em;
    margin: 15px 0;
}

.home-service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    padding: 10px 25px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background: #c0392b;
}

@media (max-width: 768px) {
    .home-services {
        padding: 40px 0;
    }

    .home-services h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .home-service-item {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .home-service-item h3 {
        font-size: 1.3em;
        margin: 10px 0;
    }

    .home-service-item p {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    .service-link {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .home-services {
        padding: 30px 0;
    }

    .home-services h2 {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .home-services-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .home-service-item {
        padding: 25px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .home-service-item h3 {
        font-size: 1.2em;
    }

    .home-service-item p {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Line Icon */
.floating-line-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background-color: #06C755;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-line-icon:hover {
    transform: scale(1.1);
}

.floating-line-icon img {
    width: 40px;
    height: 40px;
} 