/* Services Page Styles for Tout-moi Nigeria Limited
 * This file contains styles specific to the Services page
 */

/* Container for all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation styles for Services page */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

header .logo {
    height: 65px;
}

header .logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Sticky header */
header.sticky {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile menu styles */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
        text-align: center;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:first-child {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .services-hero {
        padding: 130px 0 80px;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
}

/* Services Hero Section */
.services-hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/Background2.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 120px;
    color: #ffffff;
    text-align: center;
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    color: #ffffff;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
    color: #ffffff;
}

.breadcrumbs {
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
    color: #ffffff;
}

.breadcrumbs a {
    color: #DAA520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.services-hero-content.active h1,
.services-hero-content.active p,
.services-hero-content.active .breadcrumbs {
    opacity: 1;
    transform: translateY(0);
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.overview-content.active {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #DAA520;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.overview-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.overview-content p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
}

/* Service Detail Section */
.service-detail {
    padding: 100px 0;
    background-color: #ffffff;
}

.service-detail.alt-bg {
    background-color: #f9f5f0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-grid.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-detail-content.active {
    opacity: 1;
    transform: translateX(0);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #DAA520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #8B4513;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 18px;
    color: #DAA520;
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.feature-item p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    background-color: #DAA520;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-cta:hover {
    background-color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-detail-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.service-detail-image.active {
    opacity: 1;
    transform: translateX(0);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: #f9f5f0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #8B4513;
}

.section-header p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.process-step:nth-child(2) {
    transition-delay: 0.1s;
}

.process-step:nth-child(3) {
    transition-delay: 0.2s;
}

.process-step:nth-child(4) {
    transition-delay: 0.3s;
}

.process-step:nth-child(5) {
    transition-delay: 0.4s;
}

.process-step:nth-child(6) {
    transition-delay: 0.5s;
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #8B4513;
}

.step-content p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./images/Background3.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-content.active {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #DAA520;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    margin: 1.5rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-logo {
    max-width: 160px;
    height: auto;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-services a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-hero-content h1 {
        font-size: 3rem;
    }
    
    .overview-content h2, 
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-detail-content,
    .service-detail-image {
        transform: translateY(30px);
    }
    
    .service-detail-content.active,
    .service-detail-image.active {
        transform: translateY(0);
    }

    .service-detail-image img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 130px 0 80px;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .overview-content h2,
    .section-header h2,
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-features {
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 120px 0 70px;
    }
    
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-hero-content p {
        font-size: 0.95rem;
    }
    
    .overview-content h2,
    .section-header h2,
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.pulse {
    animation: pulse 1s ease-in-out;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Footer Variables */
:root {
    --white: #ffffff;
    --primary-color: #8B4513;
    --secondary-color: #4A3728;
    --accent-color: #DAA520;
    --text-color: #333333;
    --light-bg: #f9f5f0;
} 