/* Services Section */
.services {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 3rem 0 3rem; /* Align content just below fixed header */
    display: flex;
    justify-content: space-between;
    gap: 120px;
    width: 100%;
    flex-direction: row;
    height: 100vh;
    align-items: center;
    box-sizing: border-box;
}

/* Services Image - Left Side */
.services-image {
    flex: 1;
    max-width: 50%;
    opacity: 0;
    transform: translateX(-60px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-image.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.services-img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.services-img:hover {
    opacity: 0.95;
}

/* Services Content - Right Side */
.services-content {
    flex: 1;
    max-width: 36%;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: right;
}

.services-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.services-title {
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-align: right;
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-red {
    color: #ffffff;
    font-style: normal;
    font-weight: 300;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.services-description {
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-block;
}

.cta-button-outline:hover {
    background: white;
    color: #ff4444;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    text-decoration: none !important;
}

.cta-button-outline:focus,
.cta-button-outline:active,
.cta-button-outline:visited {
    text-decoration: none !important;
}

.cta-button-outline:active {
    transform: translateY(-1px) scale(0.98);
}

