@charset "UTF-8";

.about {
    background-color: var(--bg-light);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(.9);
    border: 2px solid var(--accent);
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
}

.about:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(0,87,183,.9);
}

.approach {
    background-color: var(--light);
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-item {
    background-color: var(--bg-light)!important;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.1);
    padding: 30px;
    border-radius: 10px;
    transition: all .3s ease;
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}

.approach-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.approach:hover {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

:root {
    --primary: #0057B7;
    --secondary: #FFD700;
    --accent: #FFC72C;
    --bg-dark: #000000;
    --bg-light: #1f2124;
    --text: #FFFFFF;
    --text-light: #CCCCCC;
    --white: #FFFFFF;
    --button: #ff220e;
}

.contact {
    background-color: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-form {
    padding: 30px;
    border-radius: 10px;
}

.contact-map {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.contact:hover {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(0,87,183,.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(109,70,107,.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

footer {
    background-color: var(--bg-light);
    color: var(--text);
    padding: 50px 0 20px;
}

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

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(230,230,230,.9);
    color: var(--primary);
    transition: all .3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: var(--text-light);
    font-size: .9rem;
}

header {
    padding: 32px;
    background-color: var(--bg-light);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg,var(--light) 0,var(--secondary) 100%);
    padding: 180px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero:hover {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(0,87,183,.5);
}

@media (max-width:992px) {
    section {
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
    }

    .about-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: all .3s ease;
        padding: 20px 0;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 15px 0;
    }
}

@media (max-width:576px) {
    section {
        padding: 50px 0;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 25px;
    }
}

.services {
    background-color: var(--bg-light);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: all .3s ease;
    background-color: var(--bg-dark)!important;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.1);
}

.service:hover {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.service-card h3 {
    color: var(--accent);
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 15px 0;
}

.service-img {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    filter: brightness(.9);
    border: 2px solid var(--accent);
}

.service-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.testimonials {
    background-color: var(--light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial {
    background-color: var(--bg-light)!important;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.1);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn .5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .name {
    font-weight: 700;
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    cursor: pointer;
    transition: all .3s ease;
}

.slider-dot.active {
    background-color: var(--primary);
}

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

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

h1 {
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 700;
}

h2,
h3,
h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all .3s ease;
}

a:hover {
    color: var(--accent);
}

.btn {
    display: inline-block;
    background-color: var(--button);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: auto;
}

.btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--button);
    color: var(--button);
}

.btn-outline:hover {
    background-color: var(--button);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.corporate-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.corporate-benefits li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.corporate-offer {
    background-color: rgba(0, 87, 183, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 3px solid var(--accent);
}