* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0d2e10;
    --primary-green-dark: #061808;
    --primary-green-light: #145217;
    --accent-yellow: #ffd60a;
    --dark: #0d0d0d;
    --dark-gray: #1c1c1e;
    --gray: #48484a;
    --light-gray: #f2f2f7;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.18);
    --slate-300: #cbd5e1;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--dark);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: var(--dark);
    position: relative;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contact {
    display: flex;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-green-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 180px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-main .eco { color: var(--primary-green-light); }
.logo-main .climate { color: var(--white); }

.logo-sub {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green-light);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle::after {
    content: '▾';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--dark);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-dropdown-item:hover {
    background: rgba(46, 125, 50, 0.2);
    color: var(--primary-green-light);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.menu-bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

.hero {
    position: relative;
    height: 750px;
    background: var(--dark);
    overflow: visible;
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    opacity: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    background: linear-gradient(to right, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.8) 25%, rgba(13, 13, 13, 0.5) 50%, rgba(13, 13, 13, 0.2) 75%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 0 100px 0;
    max-width: 550px;
    margin-left: -20px;
}

.hero-badge {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 3px solid #16a34a;
    border-radius: 50px;
    color: #16a34a;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 250px;
}

.hero-floating-card {
    position: absolute;
    right: 80px;
    bottom: 40px;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 28px;
    z-index: 30;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.floating-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(52, 199, 89, 0.15);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.floating-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.features-bar {
    position: absolute;
    z-index: 25;
    bottom: -40px;
    left: 0;
    right: 0;
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(13, 13, 13, 0.98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: transparent;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    opacity: 1;
    background: rgba(52, 199, 89, 0.08);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-green);
}

.floating-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(52, 199, 89, 0.15);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}

.feature-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 500;
}

section {
    padding: 80px 0;
}

.services {
    padding-top: 100px;
}

.section-label {
    display: block;
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.section-title .highlight {
    color: var(--primary-green);
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

.services {
    background: var(--white);
}

.service-areas {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-areas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.service-areas-left {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.service-areas-text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-areas .section-label {
    color: var(--primary-green-light);
}

.service-areas .section-title {
    color: var(--white);
    text-align: left;
    margin: 0;
}

.service-areas-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.service-areas-features {
    display: flex;
    gap: 24px;
    margin: 8px 0;
}

.areas-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.feature-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.feature-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.service-areas-vertical-divider {
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.areas-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-area-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.area-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.area-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.area-note {
    color: var(--primary-green-light);
    font-size: 13px;
    font-weight: 500;
    margin-left: 6px;
}

.service-areas-right {
    width: 100%;
}

.service-areas-map-placeholder {
    width: 100%;
}

.map-image {
    width: 120%;
    height: auto;
    display: block;
    margin-left: -10%;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.services-intro {
    max-width: 500px;
}

.services-note {
    max-width: 400px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    padding: 20px;
    border-left: 3px solid var(--primary-green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services-grid .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 180px;
    left: 24px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--white);
}

.service-icon-red {
    background: #ff3b30;
}

.service-icon-blue {
    background: #007aff;
}

.service-icon-green {
    background: #16a34a;
}

.service-icon-lime {
    background: #30d158;
}

.service-card .service-title,
.service-card .service-desc,
.service-card .service-link {
    padding: 0 28px;
}

.service-card .service-title {
    margin-top: 70px;
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .service-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    padding-bottom: 28px !important;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-green-dark);
    gap: 12px;
}

.about {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 450px 1fr 350px;
    gap: 40px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.about-text .section-label {
    color: var(--primary-green-light);
}

.about-text .section-title {
    color: var(--white);
}

.about-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    margin-bottom: 32px;
}

.about-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.why-choose {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
}

.why-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--primary-green-light);
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:last-child {
    border-bottom: none;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-text {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.why-sub {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.stats {
    background: var(--white);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--light-gray);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 40px;
    background: var(--white);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--light-gray);
}

.stat-icon {
    font-size: 48px;
    opacity: 0.8;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    margin-top: 6px;
}

.testimonial {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-quote {
    background: linear-gradient(to right, var(--dark) 0%, var(--dark) 80%, rgba(13, 13, 13, 0.5) 100%);
    padding: 40px;
    border-right: none;
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.quote-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.author-name {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
}

.testimonial-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.testimonial-cta {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    padding: 40px;
    color: var(--white);
}

.testimonial-cta h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonial-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    z-index: 5;
    clear: both;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #28a745, transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: #28a745;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    margin-top: 0;
    color: var(--white);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links-list li a:hover {
    color: #28a745;
    transform: translateX(2px);
}

.footer-service-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: none;
    transition: var(--transition);
}

.footer-service-link a:hover {
    color: #28a745;
    transform: translateX(2px);
}

.footer-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-service-icon img {
    width: 28px !important;
    height: 28px !important;
}

.footer-bottom-bar {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #28a745;
}

.footer-link-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-map {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-map iframe,
.contact-map iframe {
    width: 100%;
    display: block;
    border: 0;
}

.map-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Contact Page Styles */
.contact-page {
    background: var(--light-gray);
    padding: 100px 0;
    min-height: 100vh;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}

.contact-info-grid {
    display: grid;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-text a,
.contact-info-text p {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--primary-green);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-map-section {
    margin-top: 60px;
}

.contact-map-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map .map-img {
    height: 400px;
}

.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-top: 16px;
    line-height: 1.1;
}

.about-detail {
    padding: 100px 0;
    background: var(--white);
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.about-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-values {
    margin-top: 80px;
}

.values-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-detail {
        padding: 60px 0;
    }
    
    .about-detail-title {
        font-size: 28px;
    }
    
    .about-detail-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .about-feature {
        padding: 16px;
        gap: 12px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .feature-text h4 {
        font-size: 15px;
    }
    
    .feature-text p {
        font-size: 12px;
    }
}

.projects-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.projects-intro {
    text-align: center;
    margin-bottom: 60px;
}

.projects-intro-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.projects-intro-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.85) 60%, transparent 100%);
    padding: 40px 20px 20px;
    transform: translateY(0);
    transition: var(--transition);
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.project-category {
    font-size: 14px;
    color: var(--primary-green-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-intro-title {
        font-size: 32px;
    }
    
    .project-image {
        height: 240px;
    }
    
    .projects-section {
        padding: 60px 0;
    }
}

.solutions-page {
    padding: 80px 0 100px;
    background: #f8f9fa;
    min-height: 100vh;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.solutions-title .highlight {
    color: var(--primary-green);
}

.solutions-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.solution-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-image-industrial {
    transform: scale(1.1);
}

.solution-icon-box {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    font-size: 28px;
    z-index: 100;
}

.solution-icon {
    font-size: 28px;
}

.solution-content {
    padding: 50px 30px 30px;
}

.solution-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.solution-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.solution-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.solution-btn:hover {
    background: var(--primary-green-dark);
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .solutions-page {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page-header h1 {
        font-size: 36px;
    }

    .contact-form {
        padding: 24px;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--white);
}

.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9997;
    animation: call-pulse 2s ease-in-out infinite;
}

.call-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    background: #128C7E;
}

.call-icon {
    width: 24px;
    height: 24px;
    color: white;
    animation: call-bounce 1s ease-in-out infinite;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    background: #128C7E;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    color: white;
    animation: whatsapp-bounce 1s ease-in-out infinite;
}

.whatsapp-text {
    display: none;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo-img {
        max-width: 280px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-contact-item {
        font-size: 18px;
    }

    .footer-social {
        gap: 16px;
    }

    .footer-social-link {
        width: 56px;
        height: 56px;
    }

    .footer-heading {
        font-size: 20px;
        margin-top: 0;
    }

    .footer-links-list li a,
    .footer-service-link a {
        font-size: 18px;
        padding: 14px 0;
        min-height: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 16px;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    .footer-bottom-links a {
        font-size: 16px;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-green);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image,
.service-image img,
.service-detail-image img,
.project-image img,
.about-image img,
.testimonial-image img,
.areas-new-right img {
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-links-list li a,
    .footer-service-link a {
        font-size: 13px;
        padding: 4px 0;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }

    .footer-copyright,
    .footer-bottom-links a {
        font-size: 12px;
    }
}

@keyframes call-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

@keyframes call-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .call-float {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        padding: 0;
        z-index: 9997;
    }
    
    .call-icon {
        width: 22px;
        height: 22px;
        color: white;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        padding: 0;
    }
    
    .whatsapp-icon {
        width: 22px;
        height: 22px;
        color: white;
    }
    
    .scroll-top-btn {
        bottom: 220px;
        right: 20px;
        width: 52px;
        height: 52px;
        background: #000000;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        z-index: 9998;
    }
    
    .scroll-top-btn:hover {
        background: #333333;
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #333333;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.scroll-top-btn svg {
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 180px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

.service-detail,
.service-detail-page {
    background: var(--white);
    padding: 80px 0;
}

.service-detail.hidden {
    display: none;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 40px;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--primary-green-dark);
    transform: translateX(-5px);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-detail-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.service-detail-intro {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.service-detail-subtitle {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
    margin-top: 36px;
}

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

.service-detail-features li {
    padding: 10px 0;
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

.service-detail-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(85, 139, 47, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.benefit-desc {
    font-size: 14px;
    color: var(--gray);
    margin-top: 4px;
}

@media (max-width: 1200px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    .service-detail-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-detail-title {
        font-size: 32px;
    }
    .service-detail-image img {
        height: 300px;
    }
}

@media (max-width: 1400px) {
    .about-content,
    .testimonial-content {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose {
        grid-column: 1 / -1;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content,
    .testimonial-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 120px 30px 40px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    .nav.active {
        right: 0;
    }
    .nav-link {
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
    }
    .nav-link::after {
        display: none;
    }
    .nav-dropdown {
        width: 100%;
        position: static;
    }
    .nav-dropdown-toggle {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
        margin-top: 0;
        margin-left: 16px;
        margin-bottom: 8px;
    }
    .nav-dropdown-item {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-bottom: 4px;
    }
    .nav-dropdown-item:hover {
        background: rgba(46, 125, 50, 0.2);
    }
    body.nav-open {
        overflow: hidden;
    }
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-areas-left {
        flex-direction: column;
        gap: 32px;
    }
    .service-areas-vertical-divider {
        height: 2px;
        width: 100%;
    }
    .service-areas-right {
        order: -1;
    }
    .service-areas-features {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .logo-img {
        width: 100px;
        height: 100px;
    }
    
    .logo-sub {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
    }
    
    .tag-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .logo-sub span {
        font-size: 9px;
    }
    
    .hero {
        height: auto;
        min-height: 650px;
        padding: 100px 0 250px;
    }
    
    .hero-badge {
        padding: 12px 28px;
        border-width: 2px;
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 250px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
        justify-content: center;
    }
    
    .hero-floating-card {
        position: static;
        margin-top: 40px;
        padding: 20px;
        width: 100%;
        display: flex;
        gap: 14px;
    }
    
    .floating-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .floating-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .floating-card-text {
        font-size: 13px;
    }
    
    .features-bar {
        position: static;
        margin-top: 30px;
        padding: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        border-radius: 12px;
    }
    
    .feature-item {
        padding: 18px 16px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-text {
        font-size: 12px;
        flex-direction: column;
        gap: 2px;
    }
    
    .feature-title {
        font-size: 12px;
    }
    
    .feature-sub {
        font-size: 12px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        border-radius: 16px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .about-content,
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-image,
    .testimonial-image {
        height: 280px;
    }
    
    .dervoss-partnership-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .dervoss-partnership-left {
        padding-right: 0;
        background: transparent;
    }
    
    .dervoss-partnership-right {
        align-items: center;
    }
    
    .dervoss-right-map-small {
        max-width: 100%;
    }
    
    .dervoss-logo-bigger {
        max-width: 400px;
    }
    
    .experience-badge {
        padding: 16px 20px;
        bottom: 20px;
        left: 20px;
    }
    
    .exp-number {
        font-size: 36px;
    }
    
    .exp-text {
        font-size: 13px;
    }
    
    .about-title,
    .testimonial-title {
        font-size: 28px;
    }
    
    .about-text,
    .testimonial-text {
        font-size: 14px;
    }
    
    .about-features {
        gap: 12px;
    }
    
    .about-feature {
        font-size: 13px;
    }
    
    .why-choose {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .why-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .why-item {
        padding: 20px 0;
        gap: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .why-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .why-text {
        font-size: 15px;
    }
    
    .why-sub {
        font-size: 13px;
        margin-top: 8px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .testimonial-quote {
        padding: 28px 24px;
        background: linear-gradient(to right, var(--dark) 0%, var(--dark) 80%, rgba(13,13,13,0.5) 100%);
    }
    
    .testimonial-image::before {
        width: 40%;
        background: linear-gradient(to right, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.3) 50%, transparent 100%);
    }
    
    .testimonial-cta {
        padding: 28px 24px;
    }
    
    .testimonial-cta h3 {
        font-size: 22px;
    }
    
    .testimonial-cta p {
        font-size: 14px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        border-radius: 16px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card {
        border-radius: 20px;
    }
    
    .solution-card-image {
        height: 200px;
    }
    
    .solution-icon-box {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 16px;
    }
    
    .solution-icon-box svg {
        width: 24px;
        height: 24px;
    }
    
    .solution-card-content {
        padding: 24px;
    }
    
    .solution-card-title {
        font-size: 18px;
    }
    
    .solution-card-description {
        font-size: 14px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info {
        gap: 16px;
    }
    
    .contact-info-item {
        padding: 20px;
        border-radius: 16px;
    }
    
    .contact-info-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .contact-info-label {
        font-size: 12px;
    }
    
    .contact-info-value {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .form-textarea {
        min-height: 140px;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-links li {
        font-size: 13px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .contact-item .icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 24px;
        margin-top: 32px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .footer-links-bottom {
        gap: 16px;
    }
    
    .footer-links-bottom a {
        font-size: 12px;
    }
    
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-detail-image {
        height: 280px;
    }
    
    .about-detail-title {
        font-size: 28px;
    }
    
    .about-detail-text {
        font-size: 14px;
    }
    
    .features-list {
        gap: 12px;
    }
    
    .feature-item-detail {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .benefit-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    
    .benefit-title {
        font-size: 16px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-detail-image {
        height: 280px;
    }
    
    .service-detail-title {
        font-size: 28px;
    }
    
    .service-detail-text {
        font-size: 14px;
    }
    
    .back-btn {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }
    
    .whatsapp-icon {
        font-size: 22px;
    }
    
    .scroll-top-btn {
        bottom: 85px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    
    .scroll-top-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .nav-dropdown {
        top: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 120px 30px 40px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        width: 100%;
        position: static;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
        margin-top: 0;
        margin-left: 16px;
        margin-bottom: 8px;
    }
    
    .nav-dropdown-item {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-bottom: 4px;
    }
    
    .nav-dropdown-item:hover {
        background: rgba(46, 125, 50, 0.2);
    }
    body.nav-open {
        overflow: hidden;
    }
    .service-areas {
        padding: 60px 0;
    }
    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-areas-left {
        flex-direction: column;
        gap: 24px;
    }
    .service-areas-vertical-divider {
        height: 2px;
        width: 100%;
    }
    .service-areas-right {
        order: -1;
    }
    .service-areas .section-title {
        text-align: left;
    }
    .service-areas-desc {
        text-align: left;
    }
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    .service-areas-features {
        flex-direction: column;
        gap: 12px;
    }
    .service-area-item {
        padding: 0;
        flex-direction: row;
        text-align: left;
    }
    .area-note {
        margin-left: 8px;
        margin-top: 0;
    }
}

.container-full {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

.highlight {
    color: var(--primary-green);
}

.dervoss-components .highlight,
.dervoss-benefits .highlight {
    color: #16a34a;
}

.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

.dervoss-hero {
    position: relative;
    background: linear-gradient(135deg, #030603 0%, #051005 100%);
    padding: 360px 0 280px;
    text-align: center;
    overflow: hidden;
}

.dervoss-section-with-image {
    padding: 120px 0;
    background: var(--white);
}

.dervoss-section-with-image.dervoss-alt-section {
    background: var(--light-gray);
    padding-bottom: 10px;
}

.dervoss-components {
    padding: 120px 0;
    background: var(--light-gray);
}

.dervoss-benefits {
    padding-top: 10px;
    padding-bottom: 120px;
    background: var(--white);
}

.dervoss-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #030603 0%, #051005 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dervoss-benefit-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.dervoss-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.dervoss-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(52, 199, 89, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(52, 199, 89, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.dervoss-logo-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #16a34a;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(52, 199, 89, 0.4);
}

.dervoss-hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.dervoss-hero-subtitle {
    color: var(--primary-green-light);
    font-size: 1.25rem;
    font-weight: 500;
}

.dervoss-features {
    background: var(--white);
    padding: 80px 0;
}

.dervoss-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.dervoss-feature-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--light-gray);
    border-radius: 24px;
    transition: var(--transition);
}

.dervoss-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dervoss-feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(52, 199, 89, 0.3);
}

.dervoss-feature-icon i {
    width: 36px;
    height: 36px;
}

.dervoss-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.dervoss-feature-card p {
    margin-bottom: 0;
    color: var(--gray);
    font-weight: 500;
}

.dervoss-components {
    background: var(--light-gray);
}

.dervoss-features {
    background: var(--light-gray);
}

.dervoss-image-section {
    padding: 100px 0;
    background: var(--white);
}

.dervoss-components-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.dervoss-component-card {
    width: 100%;
    min-width: 0;
    padding: 32px;
}

.dervoss-component-image img {
    height: 140px;
}

.dervoss-component-card h3 {
    font-size: 1.1rem;
}

.dervoss-component-card p {
    font-size: 0.875rem;
}

.dervoss-sub-components {
    gap: 16px;
}

.dervoss-tech-grid {
    gap: 16px;
}

.dervoss-tech-card h4 {
    font-size: 0.95rem;
}

.dervoss-tech-card p {
    font-size: 0.8rem;
}

.dervoss-chiller-features {
    gap: 16px;
}

.dervoss-chiller-feature h4 {
    font-size: 0.95rem;
}

.dervoss-chiller-feature p {
    font-size: 0.8rem;
}

.dervoss-component-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dervoss-component-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.dervoss-component-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a34a;
    opacity: 0.2;
    margin-bottom: 12px;
    line-height: 1;
}

.dervoss-component-card h3 {
    margin-bottom: 24px;
}

.dervoss-sub-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.dervoss-sub-component {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition);
}

.dervoss-sub-component:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dervoss-sub-component h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dervoss-sub-component h4 i {
    color: #16a34a;
}

.dervoss-sub-component p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.dervoss-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.dervoss-tech-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(52, 199, 89, 0.2);
    transition: var(--transition);
}

.dervoss-tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(52, 199, 89, 0.2);
}

.dervoss-tech-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
}

.dervoss-tech-icon i {
    width: 28px;
    height: 28px;
}

.dervoss-tech-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.dervoss-tech-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.dervoss-units {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-300);
}

.dervoss-units h4 {
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.dervoss-unit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.dervoss-unit-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #16a34a;
}

.dervoss-unit-card h5 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dervoss-unit-card h5 i {
    color: #16a34a;
}

.dervoss-unit-card p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.dervoss-list {
    list-style: none;
    margin-top: 32px;
}

.dervoss-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.dervoss-list li:hover {
    transform: translateX(4px);
}

.dervoss-list li i {
    color: #16a34a;
    margin-top: 4px;
    flex-shrink: 0;
}

.dervoss-chiller-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.dervoss-chiller-feature {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.dervoss-chiller-feature h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dervoss-chiller-feature h4 i {
    color: #16a34a;
}

.dervoss-chiller-feature p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.dervoss-pool-section {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #030603 0%, #051005 100%);
    border-radius: 20px;
    color: var(--white);
}

.dervoss-pool-section h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dervoss-pool-section h4 i {
    color: #16a34a;
}

.dervoss-pool-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.dervoss-section-with-image {
    padding: 120px 0;
    background: var(--white);
}

.dervoss-section-with-image.dervoss-alt-section {
    background: var(--light-gray);
}

.dervoss-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 400px auto;
    align-items: start;
    row-gap: 0;
    column-gap: 60px;
}

.dervoss-section-image-60 {
    margin-top: -16px;
}

.dervoss-section-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.dervoss-section-image-62 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.dervoss-section-image-60 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.dervoss-section-right {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: stretch;
}

.dervoss-section-video {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.dervoss-section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.dervoss-section-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 0;
}

.dervoss-section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.dervoss-section-text h2 {
    margin-bottom: 24px;
}

.dervoss-section-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.dervoss-section-text p:last-child {
    margin-bottom: 0;
}

.dervoss-section-image:hover img,
.dervoss-section-video:hover video {
    transform: scale(1.05);
}

.dervoss-component-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.dervoss-component-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1600px) {
    .container-full {
        padding: 0 24px;
    }
}

@media (max-width: 1400px) {
    .dervoss-components-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dervoss-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .dervoss-hero {
        padding: 200px 0 160px;
    }
    
    .dervoss-hero-title {
        font-size: 1.8rem;
    }
    
    .dervoss-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dervoss-alt-section .dervoss-section-content {
        grid-template-columns: 1fr;
    }
    
    .dervoss-alt-section .dervoss-section-image {
        order: -1;
        display: none;
    }
    
    .dervoss-section-with-image.dervoss-alt-section {
        padding-bottom: 0;
    }
    
    .dervoss-components {
        padding-top: 40px;
    }
    
    .dervoss-section-image-60 {
        display: none !important;
    }
    
    .dervoss-section-image img {
        height: 260px;
    }
    
    .dervoss-components-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }
    
    .dervoss-component-image img {
        height: 180px;
    }
    
    .dervoss-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .dervoss-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dervoss-benefit-card.dervoss-benefit-with-image img {
        height: 160px;
    }
    
    .dervoss-benefit-card.dervoss-benefit-with-image .dervoss-benefit-content {
        padding: 24px;
    }
    
    .dervoss-sub-components {
        grid-template-columns: 1fr;
    }
    
    .dervoss-chiller-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dervoss-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.dervoss-gallery-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.dervoss-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.dervoss-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.dervoss-gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.dervoss-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.dervoss-component-card {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dervoss-component-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.dervoss-benefits {
    background: var(--white);
}

.dervoss-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.dervoss-benefit-card {
    width: 100%;
    min-width: 0;
}

.dervoss-benefit-card.dervoss-benefit-with-image img {
    height: 120px;
}

.dervoss-benefit-card.dervoss-benefit-with-image .dervoss-benefit-content {
    padding: 20px;
}

.dervoss-benefit-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.dervoss-benefit-card h3 {
    font-size: 0.95rem;
}

.dervoss-benefit-card p {
    font-size: 0.775rem;
}

.dervoss-benefit-card.dervoss-benefit-with-image {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.dervoss-benefit-card.dervoss-benefit-with-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.dervoss-benefit-card.dervoss-benefit-with-image .dervoss-benefit-content {
    padding: 32px;
}

.dervoss-benefit-card.dervoss-benefit-with-image .dervoss-benefit-icon {
    margin-top: 0;
}

.dervoss-benefits-grid-second {
    margin-top: 48px;
}

.dervoss-benefit-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.dervoss-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.dervoss-benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(52, 199, 89, 0.25);
}

.dervoss-benefit-icon i {
    width: 32px;
    height: 32px;
}

.dervoss-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.dervoss-cta {
    background: linear-gradient(135deg, #030603 0%, #051005 100%);
    padding: 100px 0;
    text-align: center;
}

.dervoss-cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.dervoss-cta-content p {
    color: var(--slate-30);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.areas {
    background: var(--dark);
    padding: 100px 0;
}

.areas-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.areas-text {
    flex: 1;
}

.areas-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.areas-list {
    display: flex;
    gap: 60px;
    margin-bottom: 32px;
}

.areas-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.areas-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.areas-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.areas-feature-icon {
    font-size: 20px;
}

.areas-image {
    flex: 1;
}

.areas-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.areas .section-title {
    color: var(--white);
}

.areas .section-label {
    color: var(--primary-green-light);
}

.dervoss-partnership {
    background: linear-gradient(135deg, #030603 0%, #051005 100%);
    padding: 40px 0 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 80px solid #ffffff;
}

.dervoss-partnership::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.dervoss-partnership-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: transparent !important;
}

.dervoss-partnership-left {
    flex: 1;
    background: linear-gradient(to right, #030603 0%, #030603 70%, transparent 100%);
    z-index: 10;
    padding-right: 40px;
}

.dervoss-partnership-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 20px;
}

.dervoss-logo {
    max-width: 100px;
    height: auto;
}

.dervoss-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.dervoss-logo {
    max-width: 120px;
    height: auto;
}

.dervoss-logo-text {
    color: white;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.dervoss-logo-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dervoss-logo-large {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.dervoss-right-map {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
}

.dervoss-right-map-large {
    max-width: 600px;
    width: 100%;
    height: auto;
    opacity: 1;
}

.dervoss-right-map-small {
    width: 100%;
    height: auto;
    max-width: 700px;
    opacity: 1;
}

.dervoss-logo-bigger {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 20px;
    transform: none;
    filter: brightness(1.2);
}

.dervoss-partnership .section-label {
    color: #16a34a;
    font-size: 11px;
}

.dervoss-partnership .section-title {
    color: var(--white);
    font-size: 36px;
}

.dervoss-partnership .highlight {
    color: #16a34a;
    position: relative;
}

.dervoss-partnership .highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #16a34a;
    border-radius: 2px;
}

.dervoss-partnership-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px;
}

.dervoss-features {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    margin-bottom: 28px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.dervoss-partnership .dervoss-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(52, 199, 89, 0.4);
    border-radius: 12px;
    min-height: 44px;
}

.dervoss-partnership .dervoss-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    fill: #16a34a !important;
    stroke: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dervoss-partnership .dervoss-feature-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dervoss-serving {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(52, 199, 89, 0.4);
    border-radius: 18px;
    margin-bottom: 28px;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.dervoss-serving-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.dervoss-serving-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.dervoss-serving-title {
    color: rgba(255, 255, 255, 1);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dervoss-serving-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
}

.dervoss-map {
    width: 70%;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.dervoss-serving::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 6, 3, 1) 0%, rgba(3, 6, 3, 0.8) 30%, transparent 100%);
    z-index: 4;
    pointer-events: none;
}

.dervoss-learn-more {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #16a34a 0%, #86efac 100%);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(52, 199, 89, 0.3);
    color: #000;
    border: none;
}

.dervoss-learn-more svg {
    width: 28px;
    height: 28px;
}

.dervoss-learn-more:hover {
    transform: scale(1.02);
}

@media (max-width: 1199px) {
    .dervoss-partnership-content {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .dervoss-partnership-content {
        gap: 20px;
    }
    
    .dervoss-right-map-large {
        max-width: 280px;
    }
    
    .dervoss-logo-large {
        max-width: 240px;
    }
}

@media (max-width: 767px) {
    .dervoss-features {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .dervoss-partnership .dervoss-feature {
        flex: 1 1 calc(50% - 5px);
        min-width: 150px;
        padding: 10px 14px;
    }
    
    .dervoss-partnership .highlight::after {
        width: 60px;
    }
    
    .dervoss-right-map-large {
        max-width: 220px;
    }
    
    .dervoss-logo-large {
        max-width: 180px;
    }
}

@media (max-width: 575px) {
    .dervoss-partnership .dervoss-feature {
        flex: 1 1 100%;
    }
    
    .dervoss-right-map-large {
        max-width: 200px;
    }
    
    .dervoss-logo-large {
        max-width: 160px;
    }
}

.dervoss-partnership-full {
    background: linear-gradient(135deg, #030603 0%, #051005 100%);
    padding: 0;
    margin: 0;
}

.dervoss-partnership-full .container {
    padding: 0;
    max-width: 100%;
}

.dervoss-full-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 992px) {
    .areas-new-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    .areas-new-right {
        order: -1;
    }
    .areas-new-bottom {
        flex-direction: column;
        gap: 24px;
        padding: 30px;
        width: calc(100% - 60px);
        margin-top: 0;
    }
    .areas-new-bottom-item {
        flex-direction: column;
        text-align: center;
        padding: 0 !important;
        border: none !important;
    }
    .areas-new-features {
        flex-direction: column;
        gap: 16px;
    }
    .areas-new-feature {
        flex-direction: row;
        text-align: left;
        width: 100%;
        padding: 0 !important;
        border: none !important;
    }
}

@media (max-width: 768px) {
    .areas-new-title {
        font-size: 34px;
    }
    .areas-new-desc {
        font-size: 15px;
    }
    .areas-new-feature-text span {
        font-size: 14px;
    }
    .areas-new-bottom-text h4 {
        font-size: 16px;
    }
    .areas-new-bottom-text p {
        font-size: 14px;
    }
    .areas-new-right img {
        width: 100%;
    }
    .areas-new-content {
        padding: 30px 20px 20px;
    }
    .areas-new-bottom {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body {
        font-size: 15px;
        line-height: 1.55;
        -webkit-tap-highlight-color: transparent;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 18px;
        max-width: 100%;
    }

    .header-top {
        display: none !important;
    }

    .header-main {
        padding: 10px 0;
        min-height: 64px;
    }

    .logo {
        max-width: 180px;
    }

    .logo-img {
        width: auto !important;
        height: 68px !important;
        max-height: 68px;
    }

    .mobile-menu-btn {
        display: flex !important;
        width: 48px;
        height: 48px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    .menu-bar {
        width: 24px;
        height: 2.5px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(180deg, var(--dark) 0%, #0a1a0c 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 110px 24px 32px;
        gap: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav.active {
        right: 0;
    }

    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(180deg, rgba(13,46,16,0.3) 0%, transparent 100%);
        pointer-events: none;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        min-height: 52px;
        letter-spacing: 0.8px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
        position: static;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 16px 0;
        min-height: 52px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
        margin-top: 0;
        margin-left: 12px;
        margin-bottom: 8px;
    }

    .nav-dropdown-item {
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 10px;
        margin-bottom: 4px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-dropdown-item:hover {
        background: rgba(46, 125, 50, 0.2);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(4px);
        z-index: 999;
    }

    .hero {
        height: auto;
        min-height: 560px;
        padding: 80px 0 160px;
        position: relative;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.35;
    }

    .hero-bg::before {
        width: 100%;
        background: linear-gradient(to right, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.75) 40%, rgba(13,13,13,0.45) 70%, rgba(13,13,13,0.2) 100%);
    }

    .hero-content {
        padding: 0 0 0 0;
        max-width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .hero-badge {
        padding: 10px 22px;
        border-width: 2px;
        font-size: 12px;
        letter-spacing: 2.5px;
        font-weight: 700;
        margin-bottom: 18px;
        border-radius: 40px;
    }

    .hero-title {
        font-size: clamp(26px, 7.5vw, 36px);
        line-height: 1.15;
        letter-spacing: -0.8px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
        color: rgba(255,255,255,0.88);
        font-weight: 400;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
    }

    .btn {
        width: 100%;
        padding: 14px 22px;
        font-size: 13px;
        justify-content: center;
        min-height: 50px;
        letter-spacing: 0.8px;
        border-radius: 10px;
        font-weight: 700;
    }

    .hero-floating-card {
        position: static;
        margin-top: 28px;
        padding: 18px;
        width: 100%;
        gap: 12px;
        border-radius: 14px;
    }

    .floating-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .floating-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .floating-card-title {
        font-size: 13px;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .floating-card-text {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .features-bar {
        position: static;
        margin-top: 24px;
        padding: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        border-radius: 12px;
    }

    .feature-item {
        padding: 16px 12px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        min-height: 108px;
        justify-content: center;
    }

    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-text {
        flex-direction: column;
        gap: 2px;
    }

    .feature-title {
        font-size: 12px !important;
        font-weight: 700;
    }

    .feature-sub {
        font-size: 11.5px !important;
        opacity: 0.85;
        line-height: 1.3;
    }

    section {
        padding: 48px 0;
    }

    .services {
        padding-top: 72px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .section-title {
        font-size: clamp(24px, 6.5vw, 30px);
        margin-bottom: 14px;
        line-height: 1.2;
        letter-spacing: -0.8px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .services-intro,
    .services-note {
        max-width: 100%;
    }

    .services-note {
        font-size: 13.5px;
        padding: 16px;
        border-left-width: 3px;
    }

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

    .service-card {
        border-radius: 16px;
    }

    .service-image {
        height: 190px;
    }

    .service-image img {
        object-fit: cover;
    }

    .service-icon {
        position: absolute;
        top: 156px;
        left: 20px;
        width: 56px !important;
        height: 56px !important;
        border-radius: 50%;
        font-size: 24px;
        border-width: 2.5px;
    }

    .service-card .service-title,
    .service-card .service-desc,
    .service-card .service-link {
        padding: 0 20px;
    }

    .service-card .service-title {
        margin-top: 56px;
        margin-bottom: 10px;
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .service-card .service-desc {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        padding-bottom: 22px !important;
    }

    .about-content,
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-image,
    .testimonial-image {
        height: 260px;
        border-radius: 14px;
        overflow: hidden;
    }

    .about-image img {
        height: 260px;
    }

    .experience-badge {
        padding: 14px 18px;
        bottom: 16px;
        left: 16px;
        border-radius: 12px;
    }

    .exp-number {
        font-size: 32px;
        font-weight: 800;
    }

    .exp-text {
        font-size: 11px;
        letter-spacing: 0.5px;
        margin-top: 4px;
    }

    .about-text {
        padding-top: 28px;
    }

    .about-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-features li {
        padding: 10px 0;
        font-size: 14px;
        font-weight: 600;
    }

    .why-choose {
        margin-top: 28px;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .why-title {
        font-size: 15px;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }

    .why-item {
        padding: 16px 0;
        gap: 14px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        min-width: 44px;
    }

    .why-text {
        font-size: 14px;
    }

    .why-sub {
        font-size: 12.5px;
        margin-top: 4px;
        line-height: 1.5;
    }

    .stats {
        padding: 36px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        border-radius: 12px;
        overflow: hidden;
    }

    .stat-item {
        padding: 22px 16px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
        opacity: 0.85;
    }

    .stat-number {
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
    }

    .stat-label {
        font-size: 12px;
        margin-top: 4px;
        line-height: 1.3;
    }

    .testimonial-content {
        border-radius: 16px;
        overflow: hidden;
    }

    .testimonial-quote {
        padding: 28px 22px;
    }

    .stars {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .quote-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-title {
        font-size: 12px;
    }

    .testimonial-image {
        height: 220px;
        min-height: 220px;
    }

    .testimonial-image img {
        height: 220px;
        min-height: 220px;
    }

    .testimonial-image::before {
        width: 35%;
        background: linear-gradient(to right, rgba(13,13,13,0.8) 0%, rgba(13,13,13,0.3) 50%, transparent 100%);
    }

    .testimonial-cta {
        padding: 28px 22px;
    }

    .testimonial-cta h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .testimonial-cta p {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .page-hero {
        padding: 72px 0 48px;
    }

    .page-title {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.15;
        letter-spacing: -1px;
        margin-top: 12px;
    }

    .contact-page {
        padding: 56px 0;
    }

    .contact-page-header {
        text-align: left;
        margin-bottom: 36px;
    }

    .contact-page-header h1 {
        font-size: clamp(26px, 7.5vw, 34px);
        line-height: 1.15;
        letter-spacing: -0.8px;
        margin-bottom: 10px;
    }

    .contact-page-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.3px;
    }

    .contact-info-grid {
        gap: 14px;
    }

    .contact-info-item {
        padding: 18px;
        border-radius: 12px;
        gap: 14px;
        align-items: center;
    }

    .contact-info-icon {
        font-size: 24px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-gray);
        border-radius: 10px;
    }

    .contact-info-text h3 {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.75;
    }

    .contact-info-text a,
    .contact-info-text p {
        font-size: 14.5px;
        font-weight: 600;
        line-height: 1.4;
    }

    .contact-form {
        padding: 24px 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
    }

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

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        letter-spacing: 0.2px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        min-height: 48px;
        border: 1.5px solid rgba(0,0,0,0.1);
        border-radius: 10px;
        font-family: inherit;
        font-size: 15px;
        color: var(--dark);
        background: var(--white);
        transition: all 0.2s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(13, 46, 16, 0.1);
    }

    .form-group textarea {
        min-height: 130px;
        line-height: 1.5;
        padding-top: 14px;
        resize: vertical;
    }

    .contact-form .btn {
        min-height: 52px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 1px;
        border-radius: 10px;
    }

    .contact-map-section {
        margin-top: 48px;
    }

    .contact-map-section h2 {
        font-size: 20px;
        text-align: left;
        margin-bottom: 20px;
    }

    .contact-map .map-img {
        height: 220px;
    }

    .projects-section {
        padding: 48px 0;
    }

    .projects-intro {
        text-align: left;
        margin-bottom: 36px;
    }

    .projects-intro-title {
        font-size: clamp(24px, 6.5vw, 30px);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .projects-intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image {
        height: 210px;
    }

    .project-overlay {
        padding: 32px 16px 16px;
    }

    .project-title {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .project-category {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .solutions-page {
        padding: 56px 0;
    }

    .solutions-header {
        margin-bottom: 36px;
    }

    .solutions-title {
        font-size: clamp(26px, 7vw, 34px);
        margin-bottom: 10px;
        line-height: 1.15;
    }

    .solutions-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        border-radius: 16px;
    }

    .solution-image-container {
        height: 190px;
    }

    .solution-icon-box {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 16px;
        border-radius: 12px;
    }

    .solution-icon-box .solution-icon,
    .solution-icon-box svg,
    .solution-icon-box i {
        width: 22px;
        height: 22px;
        font-size: 22px;
    }

    .solution-content {
        padding: 42px 20px 20px;
    }

    .solution-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .solution-description {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .solution-btn {
        padding: 13px 20px;
        font-size: 13px;
        min-height: 46px;
        border-radius: 10px;
        font-weight: 700;
    }

    .about-detail {
        padding: 48px 0;
    }

    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 60px;
    }

    .about-detail-image {
        border-radius: 16px;
        overflow: hidden;
    }

    .about-detail-image img {
        height: auto;
    }

    .about-detail-title {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .about-detail-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .about-feature {
        padding: 16px;
        border-radius: 12px;
        gap: 12px;
    }

    .feature-icon {
        font-size: 22px;
    }

    .feature-text h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .feature-text p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .about-values {
        margin-top: 48px;
    }

    .values-title {
        text-align: left;
        font-size: 26px;
        margin-bottom: 28px;
        line-height: 1.2;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
        border-radius: 14px;
        text-align: left;
    }

    .value-icon {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .value-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .value-text {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .service-detail,
    .service-detail-page {
        padding: 48px 0;
    }

    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 13px;
        margin-bottom: 24px;
        padding: 10px 0;
        min-height: 44px;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-detail-image {
        order: -1;
        border-radius: 16px;
        overflow: hidden;
    }

    .service-detail-image img {
        height: 260px;
    }

    .service-detail-title {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.8px;
    }

    .service-detail-intro {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .service-detail-subtitle {
        font-size: 17px;
        margin-bottom: 12px;
        margin-top: 28px;
    }

    .service-detail-features li {
        padding: 8px 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .service-detail-benefits {
        gap: 12px;
        margin-bottom: 28px;
    }

    .benefit-item {
        padding: 16px;
        border-radius: 12px;
        gap: 14px;
        align-items: center;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        min-width: 48px;
    }

    .benefit-title {
        font-size: 14.5px;
    }

    .benefit-desc {
        font-size: 12.5px;
        margin-top: 2px;
        line-height: 1.5;
    }

    .service-areas {
        padding: 48px 0;
    }

    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-areas-left {
        flex-direction: column;
        gap: 24px;
    }

    .service-areas-vertical-divider {
        height: 1px;
        width: 100%;
        opacity: 0.6;
    }

    .service-areas-right {
        order: -1;
    }

    .service-areas .section-title {
        text-align: left;
    }

    .service-areas-desc {
        text-align: left;
        font-size: 14px;
        line-height: 1.7;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-areas-features {
        flex-direction: column;
        gap: 12px;
    }

    .areas-feature {
        width: 100%;
        gap: 10px;
    }

    .service-area-item {
        padding: 0;
        flex-direction: row;
        text-align: left;
        gap: 10px;
        min-height: 40px;
        align-items: center;
    }

    .area-icon {
        width: 20px;
        height: 20px;
    }

    .area-name {
        font-size: 13.5px;
    }

    .area-note {
        margin-left: 4px;
        margin-top: 0;
        font-size: 12px;
    }

    .map-image {
        width: 100%;
        margin-left: 0;
        border-radius: 14px;
    }

    .footer {
        padding: 48px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 24px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-brand {
        gap: 12px;
        margin-bottom: 18px;
    }

    .footer-logo-img {
        max-width: 140px !important;
        width: 140px !important;
        height: auto !important;
    }

    .footer-tagline {
        font-size: 13.5px;
        line-height: 1.6;
        color: rgba(255,255,255,0.7);
        font-weight: 400;
    }

    .footer-contact {
        gap: 10px;
        margin-bottom: 18px;
    }

    .footer-contact-item {
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
        min-height: 44px;
        align-items: center;
    }

    .footer-contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: rgba(40, 167, 69, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-social {
        gap: 10px;
        margin-top: 2px;
        margin-bottom: 0;
    }

    .footer-social-link {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        border-radius: 10px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-heading {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.2px;
        margin-bottom: 14px;
    }

    .footer-links-list {
        gap: 0;
    }

    .footer-links-list li a {
        font-size: 13.5px;
        font-weight: 500;
        padding: 10px 0;
        min-height: 44px;
        align-items: center;
        gap: 8px;
    }

    .footer-service-link a {
        font-size: 13.5px;
        font-weight: 500;
        padding: 10px 0;
        min-height: 48px;
        gap: 10px;
        align-items: center;
    }

    .footer-service-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: rgba(40, 167, 69, 0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .footer-service-icon img {
        width: 20px !important;
        height: 20px !important;
    }

    .footer-map {
        margin-bottom: 24px;
        border-radius: 12px;
        overflow: hidden;
    }

    .map-img {
        height: 160px;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-bottom-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom-links a {
        font-size: 12px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    .footer-link-separator {
        display: none;
    }

    .call-float,
    .whatsapp-float {
        bottom: 16px;
        width: 52px;
        height: 52px;
        padding: 0;
        z-index: 9997;
        min-width: 52px;
        min-height: 52px;
    }

    .call-float {
        left: 16px;
    }

    .whatsapp-float {
        right: 16px;
    }

    .call-float svg,
    .whatsapp-float svg,
    .call-icon,
    .whatsapp-icon {
        width: 22px;
        height: 22px;
        font-size: 22px;
    }

    .scroll-top-btn {
        bottom: 84px;
        right: 16px;
        width: 44px;
        height: 44px;
        z-index: 9996;
    }

    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }

    .dervoss-hero {
        padding: 160px 0 160px;
    }

    .dervoss-section-with-image {
        padding: 56px 0;
    }

    .dervoss-components,
    .dervoss-benefits,
    .dervoss-features {
        padding: 48px 0;
    }

    .dervoss-components-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .dervoss-component-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .dervoss-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dervoss-feature-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .dervoss-feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin: 0 auto 18px;
    }

    .dervoss-tech-grid,
    .dervoss-sub-components,
    .dervoss-unit-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dervoss-benefit-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .dervoss-benefit-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .dervoss-cta {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    section {
        padding: 40px 0;
    }

    .header-main {
        padding: 8px 0;
    }

    .logo-img {
        height: 56px !important;
        max-height: 56px;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }

    .nav {
        padding: 100px 20px 24px;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 14px;
        min-height: 48px;
    }

    .hero {
        min-height: 520px;
        padding: 72px 0 140px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 13.5px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
        letter-spacing: 2px;
    }

    .btn {
        font-size: 12.5px;
        padding: 13px 18px;
        min-height: 48px;
        letter-spacing: 0.7px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .services-grid,
    .projects-grid,
    .solutions-grid,
    .values-grid {
        gap: 14px;
    }

    .service-image {
        height: 170px;
    }

    .service-icon {
        top: 138px;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px;
    }

    .service-card .service-title {
        margin-top: 48px;
        font-size: 14px;
    }

    .contact-page {
        padding: 48px 0;
    }

    .contact-page-header h1 {
        font-size: 24px;
    }

    .contact-form {
        padding: 20px 16px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        min-height: 46px;
        font-size: 14.5px;
    }

    .form-group label {
        font-size: 12.5px;
        margin-bottom: 6px;
    }

    .footer-logo-img {
        max-width: 120px !important;
        width: 120px !important;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    .footer-links-list li a,
    .footer-service-link a {
        font-size: 13px;
        padding: 9px 0;
    }

    .footer-heading {
        font-size: 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .call-float,
    .whatsapp-float {
        bottom: 14px;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .call-float {
        left: 14px;
    }

    .whatsapp-float {
        right: 14px;
    }

    .scroll-top-btn {
        bottom: 76px;
        right: 14px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .areas-new {
        padding: 48px 0 !important;
    }

    .areas-new-content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 24px 18px !important;
        display: grid !important;
    }

    .areas-new-left {
        display: flex;
        flex-direction: column;
        gap: 12px;
        order: 2;
    }

    .areas-new-right {
        order: 1 !important;
        width: 100% !important;
    }

    .areas-new-right img {
        width: 100% !important;
        height: auto !important;
        max-height: 260px;
        object-fit: cover;
        border-radius: 14px;
    }

    .areas-new-label {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .areas-new-title {
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
    }

    .areas-new-desc {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .areas-new-features {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 12px !important;
    }

    .areas-new-feature {
        flex-direction: row !important;
        width: 100% !important;
        text-align: left !important;
        padding: 14px 16px !important;
        border-radius: 12px !important;
        gap: 12px !important;
        align-items: center;
        min-height: 48px;
    }

    .areas-new-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .areas-new-feature-icon svg,
    .areas-new-feature-icon img,
    .areas-new-feature-icon i {
        width: 18px;
        height: 18px;
        font-size: 18px;
    }

    .areas-new-feature-text span {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .areas-new-feature-text p {
        font-size: 12px !important;
    }

    .areas-new-bottom {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 20px !important;
        width: calc(100% - 36px) !important;
        border-radius: 14px !important;
    }

    .areas-new-bottom-item {
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 0 !important;
        border: none !important;
        width: 100% !important;
    }

    .areas-new-bottom-text h4 {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }

    .areas-new-bottom-text p {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }

    .dervoss-partnership,
    .dervoss-partnership-content,
    .dervoss-partnership-left,
    .dervoss-partnership-right {
        flex-direction: column !important;
        display: flex !important;
    }

    .dervoss-partnership-content {
        flex-direction: column !important;
        gap: 28px !important;
    }

    .dervoss-partnership-left {
        padding-right: 0 !important;
        width: 100% !important;
    }

    .dervoss-partnership-right {
        width: 100% !important;
    }

    .dervoss-right-map-small,
    .dervoss-logo-bigger {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .container-full {
        padding: 0 18px;
        max-width: 100%;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

