﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
}

@@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    50% {
        transform: scale(1.05);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation: fadeIn 1.5s ease-out;
}

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInLeft 0.8s ease-out;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,126,95,0.4);
}

    .logo-icon i {
        color: white;
        font-size: 1.3rem;
    }

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

    .logo-text span {
        color: #ff7e5f;
    }

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 25px;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out;
}

    .nav-link:hover {
        background: white;
        color: #000;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

    .hero-title span {
        color: #ff7e5f;
        display: inline-block;
        animation: scaleIn 0.8s ease-out 0.8s both;
    }

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255,126,95,0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #feb47b, #ff7e5f);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .cta-button:hover::before {
        left: 0;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255,126,95,0.6);
    }

    .cta-button i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .cta-button:hover i {
        transform: translateX(5px);
    }



.features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 30px 60px;
    z-index: 5;
}

.features-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(255,126,95,0.3);
}

    .feature-icon i {
        color: white;
        font-size: 1.5rem;
    }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}


.services-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

    .section-title span {
        color: #ff7e5f;
    }

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(135deg, #ff7e5f, #feb47b);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    }

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(255,126,95,0.3);
}

    .service-icon-wrapper i {
        color: white;
        font-size: 2rem;
    }

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

    .service-features li {
        padding: 8px 0;
        color: #555;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .service-features li i {
            color: #ff7e5f;
            font-size: 0.9rem;
        }


.contact-section {
    padding: 100px 60px;
    background: #1a1a2e;
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

    .contact-title span {
        color: #ff7e5f;
    }

.contact-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .contact-item-icon i {
        font-size: 1.5rem;
    }

.contact-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff7e5f;
}

.contact-item-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

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

    .social-link:hover {
        background: linear-gradient(135deg, #ff7e5f, #feb47b);
        transform: translateY(-3px);
    }

    .social-link i {
        font-size: 1.3rem;
    }


.footer {
    background: #0f0f1e;
    padding: 30px 60px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

    .footer a {
        color: #ff7e5f;
        text-decoration: none;
        margin-left: 8px;
    }

        .footer a:hover {
            text-decoration: underline;
        }

@@media (max-width: 1200px) {
    .features-bar-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid {
        gap: 30px;
    }

    .navbar {
        padding: 20px 40px;
    }
}

@@media (max-width: 768px) {
    .navbar {
        padding: 15px 25px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

        .logo-icon i {
            font-size: 1.1rem;
        }

    .nav-link {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .features-bar {
        padding: 20px 15px;
        position: static;
        background: rgba(0, 0, 0, 0.5);
    }

    .features-bar-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .feature-item {
        padding: 8px 5px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
    }

        .feature-icon i {
            font-size: 1.1rem;
        }

    .feature-title {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .services-section,
    .contact-section {
        padding: 60px 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 25px 25px;
        font-size: 0.9rem;
    }
}

@@media (max-width: 576px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        gap: 8px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

        .logo-icon i {
            font-size: 1rem;
        }

    .nav-link {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 0;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        padding: 0 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
        gap: 10px;
    }

        .cta-button i {
            font-size: 1rem;
        }

    .features-bar {
        padding: 20px 15px;
        position: static;
        background: rgba(0, 0, 0, 0.6);
        margin-top: auto;
    }

    .features-bar-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        max-width: 100%;
    }

    .feature-item {
        padding: 10px 5px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 8px;
    }

        .feature-icon i {
            font-size: 1rem;
        }

    .feature-title {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .services-section,
    .contact-section {
        padding: 50px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px;
        border-radius: 15px;
    }

    .service-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

        .service-icon-wrapper i {
            font-size: 1.6rem;
        }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .contact-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .contact-details {
        gap: 25px;
    }

    .contact-item-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

        .contact-item-icon i {
            font-size: 1.3rem;
        }

    .contact-item-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-item-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .social-links {
        gap: 12px;
        margin-top: 30px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

        .social-link i {
            font-size: 1.1rem;
        }

    .footer {
        padding: 20px;
        font-size: 0.85rem;
    }
}

@@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .features-bar-content {
        gap: 8px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 6px;
    }

        .feature-icon i {
            font-size: 0.9rem;
        }

    .feature-title {
        font-size: 0.7rem;
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(255,126,95,0.3);
}
