:root {
    --primary-color: #0F8B69;
    --secondary-color: #0a192f;
    --accent-color: #CD7F32;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #0a192f;
    --gradient-primary: linear-gradient(135deg, #0F8B69, #0a192f);
    --gradient-secondary: linear-gradient(135deg, #0a192f, #0F8B69);
    --gradient-accent: linear-gradient(135deg, #CD7F32, #E2A76F);
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.accent-line {
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto;
    border-radius: 2px;
}

section {
    padding: 80px 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s;
    transform: skewX(-15deg);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 139, 105, 0.3);
    color: var(--light-text);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 139, 105, 0.3);
}

.wave-divider {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: 1;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

.diagonal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.8;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    width: 50%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    width: 45%;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    top: -20px;
    right: -20px;
    border-radius: var(--border-radius);
    z-index: -1;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-section {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    width: 40%;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.about-text {
    width: 60%;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-section {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-section {
    background-color: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    min-width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--light-text);
    z-index: 1;
    margin: 0 15px;
}

.timeline-content {
    padding: 25px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: calc(50% - 50px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.results-section {
    position: relative;
    overflow: hidden;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.result-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.result-images {
    position: relative;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.before-img, .after-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.before-img {
    left: 0;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-img {
    right: 0;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.before-after-container:hover .before-img {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
}

.before-after-container:hover .after-img {
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}

.result-text {
    padding: 25px;
}

.result-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-stats {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.result-stats li {
    background-color: var(--light-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.infographic-section {
    background-color: var(--light-bg);
}

.infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.infographic-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.infographic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.infographic-icon {
    margin-bottom: 20px;
}

.infographic-icon img {
    width: 60px;
    height: 60px;
}

.infographic-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.partners-section {
    position: relative;
    overflow: hidden;
}

.partners-map {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.partners-map img {
    width: 100%;
    border-radius: var(--border-radius);
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.map-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(15, 139, 105, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

.city-name {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.map-point:hover .city-name {
    opacity: 1;
}

.map-point-1 {
    top: 25%;
    left: 60%;
}

.map-point-2 {
    top: 30%;
    left: 20%;
}

.map-point-3 {
    top: 60%;
    left: 35%;
}

.map-point-4 {
    top: 35%;
    left: 75%;
}

.map-point-5 {
    top: 45%;
    left: 55%;
}

.partners-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-section {
    background-color: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-info {
    width: 40%;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-form-container {
    width: 60%;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:nth-child(5), 
.form-group:nth-child(6) {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(15, 139, 105, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin-bottom: 0;
}

.footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
}

.footer-info {
    grid-column: 1;
    grid-row: 1;
}

.footer-links {
    grid-column: 2;
    grid-row: 1;
}

.footer-policies {
    grid-column: 1;
    grid-row: 2;
}

.footer-newsletter {
    grid-column: 2;
    grid-row: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer ul {
    margin-top: 15px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-form {
    display: flex;
    margin-top: 20px;
}

.footer-form input {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.footer-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-top {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-top:hover {
    transform: translateY(-5px);
    color: var(--light-text);
}

.btn-top::before {
    content: '↑';
    font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .timeline-content {
        width: calc(50% - 40px);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }
    
    .footer-info, 
    .footer-links, 
    .footer-policies, 
    .footer-newsletter {
        grid-column: 1;
    }
    
    .footer-info {
        grid-row: 1;
    }
    
    .footer-links {
        grid-row: 2;
    }
    
    .footer-policies {
        grid-row: 3;
    }
    
    .footer-newsletter {
        grid-row: 4;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-number {
        margin-left: 0;
        min-width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .service-card, 
    .infographic-item, 
    .blog-card, 
    .result-card {
        padding: 20px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(5), 
    .form-group:nth-child(6) {
        grid-column: 1;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .footer-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-form input, 
    .footer-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
}

@media screen and (max-width: 375px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .timeline-content h3,
    .service-card h3,
    .result-text h3,
    .infographic-item h3,
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-item {
        padding-bottom: 30px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .result-stats li {
        width: 100%;
        text-align: center;
    }
}