/* Background Styles */
body {
    background-color: #333333;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/backgrounds/curved-lines.png');
    background-repeat: repeat;
    background-size: 100% auto;
    opacity: 0.1;
    z-index: -1;
}

.page-header, .hero-section, .about, .services, .brands, .contact, .specialties, .clients {
    position: relative;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

/* Remove gold wave elements */
.gold-wave {
    display: none;
}

.gold-accent-animation {
    display: none;
}

/* Adjust section backgrounds */
.hero-section {
    background-color: #222222;
    position: relative;
    overflow: hidden;
}

.about, .services, .brands, .contact, .specialties, .clients {
    background-color: rgba(40, 40, 40, 0.8);
    border-radius: 8px;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

/* Specialty section styling */
.specialties-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.specialty-card {
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.specialty-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.specialty-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.specialties-slogan {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
}

.specialties-slogan h3 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

.specialties-slogan .highlight {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: 700;
}

.specialties-advanced {
    margin-top: 3rem;
}

.specialty-advanced-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.specialty-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.specialty-details {
    padding: 1.5rem;
}

.specialty-systems {
    margin-top: 1.5rem;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 1rem;
    border-radius: 8px;
}

.specialty-systems h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.specialty-systems ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    padding-left: 1.5rem;
}

/* Clients section styling */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.client-logo {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Partners section styling */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.brand-card {
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brand-name {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .specialty-advanced-card {
        flex-direction: row;
    }
    
    .specialty-image {
        width: 40%;
        height: auto;
    }
    
    .specialty-details {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .specialty-image {
        height: 200px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .client-logo {
        width: 120px;
        height: 120px;
    }
}
