/* Styles for Odoo Module Implementation Page */
.process-step {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: visible;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.process-section .row,
.benefits-section .row,
.features-section .row,
.services-section .row {
    margin: 0;
    width: 100%;
    overflow: visible !important;
}

.services-section .col-md-4,
.features-section .col-md-3,
.benefits-section .col-md-6,
.process-section .col-md-3 {
    display: flex;
    overflow: visible !important;
    padding: 1rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    height: 100%;
    overflow: visible !important;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3,
.process-step h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    white-space: normal;
    overflow-wrap: break-word;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible !important;
}

.service-card ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    white-space: normal;
    overflow-wrap: break-word;
}

/* Container fixes */
.container {
    overflow: visible !important;
    padding-left: 15px;
    padding-right: 15px;
}

section {
    overflow: visible !important;
    margin: 0;
    padding: 4rem 0;
}

/* Footer styles */
.footer {
    padding: 60px 0 20px;
    background: var(--dark-bg);
}

.footer .row {
    --bs-gutter-x: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

/* Contact Info Styles */
.contact-info {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 120px;
}

.contact-item i {
    width: 20px;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Quick Links Styles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links li {
    margin-bottom: 12px;
    text-align: center;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
}

/* Feature card fixes */
.feature-card {
    overflow: visible !important;
    height: 100%;
    width: 100%;
}
