/* Common/shared styles moved to `css/common.css` */

/* Service Details Section */
.service-details-section {
    padding: 80px 0;
    background: #fff;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
.sidebar {
    flex: 0 0 300px;
}

.sidebar-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.service-categories {
    list-style: none;
}

.service-categories li {
    margin-bottom: 10px;
}

.service-categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 4px;
}

.service-categories a i {
    font-size: 12px;
    color: #666;
}

.service-categories a:hover {
    background: #f5f5f5;
    color: #ba5717;
}

.service-categories a:hover i {
    color: #ba5717;
}

.service-categories a.active {
    background: #ba5717;
    color: #fff;
}

.service-categories a.active i {
    color: #fff;
}

.download-box {
    background: #ba5717;
    color: #fff;
    border: none;
}

.download-box h3 {
    color: #fff;
}

.download-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-download {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    width: 100%;
    justify-content: center;
}

.btn-download i {
    font-size: 18px;
}

.btn-download:hover {
    background: #1a1a1a;
}

/* Main Content */
.main-content {
    flex: 1;
}

.service-image {
    margin-bottom: 30px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.image-placeholder.has-category-image::before {
    display: none;
}

.team-img {
    height: 300px;
}

.main-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.main-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-block {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    align-items: flex-start;
}

.content-image {
    flex: 0 0 300px;
}

.content-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: #ba5717;
    font-size: 14px;
}

.why-choose-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.why-choose-section h3 {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.why-choose-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Products Section */
.products-section {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.products-section h3 {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.product-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.product-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.product-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.product-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c2c2c;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #ba5717;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    border-radius: 4px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    color: #ccc;
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ba5717;
}

.footer-bottom {
    background: linear-gradient(135deg, #ba5717 0%, #f2a84e 100%);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 30px;
    color: #fff;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        flex: 1;
        width: 100%;
    }
    
    .content-block {
        flex-direction: column;
    }
    
    .content-image {
        flex: 1;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* common.css handles contact bar + nav mobile */
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .main-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* common.css handles contact bar mobile */
}
