:root {
    --primary-color: #55C3E9;  
    --secondary-color: #323232;
    --accent-color: #FFFFFF;       
    --background-light: #f9f9f9;
    --text-dark: #333;
    --text-light: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
}

h1, h2, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h3{
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    font-family: 'Roboto', sans-serif;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.no-after-line::after {
    display: none !important;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--primary-color);
}

header {
    background: rgba(0, 0, 0, 0.3);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-container img {
    height: 100%;
    width: auto;
    max-height: 50px;
    filter: brightness(1.2);
}

.logo-container h1 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1;
}

.logo-tagline {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: -2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
}

.main-nav {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    padding: 0.3rem;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.hero {
    background-color: var(--secondary-color);
    color: var(--secondary-color);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--text-light);
}

.hero-subtitle span {
    color: var(--primary-color);
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero h2::after {
    background-color: var(--text-light);
}

.hero-text {
    font-size: 1.0rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    width: 500px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

.services {
    position: relative;
    padding: 5rem 0;
    color: var(--text-dark);
    background-color: var(--accent-color);
    position: relative;
    z-index: 1;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.services h2 {
    color: var(--secondary-color);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.service-card {
    background: var(--background-light);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-light);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--background-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(85, 195, 233, 0.2);
}

.service-card h3 {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card p {
    color: #555;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(85, 195, 233, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover i {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(85, 195, 233, 0.6);
}

.about {
    position: relative;
    padding: 5rem 0;
    color: var(--text-light);
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
}

.about-intro {
    flex: 1;
    max-width: 600px;
}

.about-tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.about-title {
    color: var(--text-light);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.about-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.values-slider {
    flex: 1;
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.values-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateX(-10px);
}

.value-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.value-text {
    flex-grow: 1;
}

.value-text h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .about-intro {
        max-width: 100%;
    }

    .values-slider {
        width: 100%;
        padding: 1rem;
    }

    .values-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .values-content {
        text-align: center;
        margin: 0 auto;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .value-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-title {
        font-size: 2rem;
    }
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border-radius: 10px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.about-cta .btn {
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

#contact {
    padding: 2rem 0;
    background-color: var(--accent-color);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#contact .about-cta {
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 1.5rem;
}

.contact {
    background-color: var(--text-light);
}

#contact h2 {
    color: var(--secondary-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: center;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 3rem 20px 1rem;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.logo-small {
    height: 40px;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    margin-bottom: 2rem;
    padding: 0 15px;
    box-sizing: border-box;
}

.social-link-item h4 {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 1px;
}

.social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1.5rem;
}

.social-links .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.tel-link {
    color: var(--text-light);
    text-decoration: none;
}

.tel-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.copyright p {
    margin: 0;
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 95%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .diagonal-bg, .diagonal-overlay {
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    }
    
    .diagonal-content {
        width: 100%;
        top: auto;
        bottom: 0;
        height: 60%;
        padding: 2rem;
    }
    
    .diagonal-caption {
        padding-top: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 850px) {
    .diagonal-bg, .diagonal-overlay {
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    }
    
    .diagonal-content {
        width: 65%;
    }
    
    .diagonal-caption {
        font-size: 2.2rem;
        max-width: 270px;
    }
    
    .split-text {
        font-size: 0.95rem;
    }
}

/* Tablets and large mobile */
@media (max-width: 768px) {
    header .container {
        height: 70px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .hero-text {
        font-size: 1.2rem;
        padding: 0 10px;
        text-align: center;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--secondary-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 100;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav li {
        margin: 0.5rem 0;
    }

    .hero {
        height: auto;
        padding: 6rem 0;
    }
    
    .hero-image {
        max-width: 100%;
        height: auto;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-content,
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info, 
    .contact-form {
        width: 100%;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .diagonal-split {
        height: auto;
        min-height: 600px;
        display: flex;
        flex-direction: column;
    }
    
    .diagonal-bg, .diagonal-overlay {
        position: relative;
        clip-path: none;
        height: 250px;
        width: 100%;
    }

    .diagonal-bg {
        z-index: 1;
    }

    .diagonal-overlay {
        top: -250px;
        margin-bottom: -250px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 2;
    }
    
    .diagonal-content {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        padding: 2rem 1.5rem;
        order: 2;
    }
    
    .diagonal-caption {
        font-size: 2rem;
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

    .diagonal-caption::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .split-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .split-subtitle {
        text-align: center;
    }

    .split-text {
        text-align: center;
    }
    
    .value-item {
        flex: 0 0 100%;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    footer {
        padding-top: 2rem;
    }
    
    .copyright {
        margin-top: 1rem;
        font-size: 0.8rem;
    }
    
    .diagonal-split {
        height: auto;
        min-height: 550px;
    }
    
    .diagonal-bg, .diagonal-overlay {
        height: 200px;
    }

    .diagonal-overlay {
        top: -200px;
        margin-bottom: -200px;
    }
    
    .diagonal-caption {
        font-size: 1.6rem;
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 15px;
    }
    
    .diagonal-content {
        padding: 1.2rem;
    }
    
    .split-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .split-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .value-highlight {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .value-description {
        font-size: 0.85rem;
    }

    .values-list {
        margin-top: 1.5rem;
    }
}

.social-link-item p {
    padding: 0 5px;
    width: 100%;
    word-wrap: break-word;
    margin-bottom: 0.5rem;
}

.social-link-item a {
    margin: 0 5px;
}

.copyright p {
    padding: 0 10px;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-content: center;
        padding: 0 10px;
    }
    
    .social-link-item {
        margin: 0 auto 1rem;
        width: 100%;
        padding: 0 5px;
    }
}

@media (max-width: 350px) {
    .social-links {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .social-link-item {
        width: 100%;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }
    
    .social-link-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .social-link-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}