/* ========================================
   FITORA TECH - SERVICES PAGE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fff;
    color: #2C2C2C;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   NAVIGATION (Same as other pages)
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #05323D;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2C2C2C;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #05323D;
    transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #05323D;
}

.contact-btn {
    padding: 12px 32px;
    background-color: transparent;
    color: #05323D;
    border: 2px solid #05323D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.contact-btn:hover {
    background-color: #05323D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 79, 95, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: #05323D;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.services-hero {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #05323D 0%, #006B8A 100%);
    text-align: center;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.page-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: #05323D;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #05323D, #006B8A);
    margin: 0 auto;
}

.section-description {
    font-size: 24px;
    color: #666;
    margin-top: 20px;
    font-weight: 300;
}

/* ========================================
   SERVICES INTRO
   ======================================== */
.services-intro {
    background: #fff;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #05323D;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.intro-text {
    font-size: 23px;
    line-height: 1.9;
    color: #555;
}

/* ========================================
   SERVICE SECTIONS
   ======================================== */
.service-section {
    background: #f8f9fa;
}

.service-section:nth-child(even) {
    background: #fff;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-section.reverse .service-content {
    direction: rtl;
}

.service-section.reverse .service-content > * {
    direction: ltr;
}

.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual svg {
    max-width: 100%;
    height: auto;
}

.service-details {
    animation: fadeInLeft 0.8s ease;
}

.service-number {
    font-size: 80px;
    font-weight: 700;
    color: #05323D;
    opacity: 0.1;
    margin-bottom: -20px;
}

.service-title {
    font-size: 40px;
    font-weight: 700;
    color: #05323D;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.service-description {
    font-size: 23px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(11, 79, 95, 0.03);
    border-left: 3px solid #006B8A;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(11, 79, 95, 0.08);
    transform: translateX(5px);
}

.feature-item svg {
    flex-shrink: 0;
}

.feature-item span {
    font-size: 21px;
    color: #2C2C2C;
    font-weight: 500;
}

/* ========================================
   IMPACT SECTION
   ======================================== */
.impact-section {
    background: linear-gradient(135deg, #05323D 0%, #006B8A 100%);
    color: #fff;
}

.impact-section .section-title {
    color: #fff;
}

.impact-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.impact-number {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.impact-label {
    font-size: 23px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: #f8f9fa;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #05323D;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.cta-text {
    font-size: 23px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background-color: #05323D;
    color: #fff;
    text-decoration: none;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #006B8A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #05323D;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.footer-logo {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 21px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #006B8A;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 19px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .service-content,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-section.reverse .service-content {
        direction: ltr;
    }

    .service-visual svg {
        max-width: 350px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 30px 20px;
        gap: 25px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .container {
        padding: 0 20px;
    }

    .services-hero {
        padding: 120px 20px 60px;
    }

    .page-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .intro-title {
        font-size: 36px;
    }

    .intro-text {
        font-size: 21px;
    }

    .service-title {
        font-size: 32px;
    }

    .service-description {
        font-size: 21px;
    }

    .feature-item span {
        font-size: 20px;
    }

    .service-visual svg {
        max-width: 300px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-number {
        font-size: 54px;
    }

    .impact-label {
        font-size: 21px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-text {
        font-size: 21px;
    }

    .cta-button {
        padding: 18px 50px;
        font-size: 19px;
    }

    .footer-links {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-text {
        font-size: 20px;
    }

    .service-number {
        font-size: 60px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-description {
        font-size: 20px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item span {
        font-size: 19px;
    }

    .service-visual svg {
        max-width: 250px;
    }

    .impact-number {
        font-size: 48px;
    }

    .impact-label {
        font-size: 20px;
    }

    .impact-text {
        font-size: 19px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 20px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 17px;
    }
}
