:root {
    --primary-color: #1c2334e9;
    --primary-dark: #1c2334e9;
    --secondary-color: #4F772D;
    --accent-color: #cacaca;
    --accent-hover: #ffffff;
    --text-color: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E9ECEF;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --font-main: 'Manrope', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    font-size: 16px;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.btn--primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

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

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

.btn--full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 5px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    font-family: var(--font-main);
}

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

.lang-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo__box {
    background-color: #B0B0B0;
    color: #1a1a1a;
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 5px 12px;
    line-height: 1;
    border: 1px solid #1a1a1a;
}

.logo__text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo--light .logo__text {
    color: #fff;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.map-link:hover {
    color: var(--accent-color);
}

.nav__list {
    display: flex;
    gap: 10px;
}

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav__link:hover {
    color: var(--primary-color);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    font-weight: 700;
    font-size: 1.1rem;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

/* Hero */
.hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero__content {
    flex: 1;
}

.hero__subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero__text {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.hero__btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-avatars {
    display: flex;
    gap: -10px;
}

.stat-avatars i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.stat-rating {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero__image-placeholder {
    width: 100%;
    height: 400px;
    /* background-color: rgba(255,255,255,0.1); */

    background: url(/assets/images/bg.jpg) no-repeat;
    background-size: cover;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.2);
    position: relative;
}



/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 77, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card__text {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card__link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-card__link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-card__link:hover i {
    transform: translateX(5px);
}

/* Why Us */
.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us__desc {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-us__item {
    display: flex;
    gap: 20px;
}

.why-us__icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.why-us__item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-us__item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-us__image-placeholder {
    width: 100%;
    height: 500px;
       background: url(/assets/images/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #bdbdbd;
}

/* CTA */
.cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.cta__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"><path d="M0 0L100 100M100 0L0 100"/></svg>');
}

.cta__content {
    text-align: left;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta p {
    opacity: 0.9;
}

/* Contact */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__item {
    display: flex;
    gap: 20px;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact__item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__item p {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact__form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 60px 0 20px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.logo--light {
    color: #fff;
    margin-bottom: 20px;
}

.footer__desc {
    opacity: 0.7;
    max-width: 300px;
}

.footer__col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col ul li a {
    opacity: 0.7;
}

.footer__col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Certifications */
.certifications__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certifications__info {
    flex: 1;
    min-width: 300px;
}

.certifications__company {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.certifications__duns {
    font-size: 1.1rem;
    color: var(--text-light);
    background: rgba(26, 77, 46, 0.05);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(26, 77, 46, 0.1);
}

.certifications__logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    flex: 1;
}

.certifications__logos img{
    width: 50%;
}

.certifications__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.certifications__logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__btns {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .why-us__inner {
        grid-template-columns: 1fr;
    }

    .why-us__image {
        order: -1;
    }
    
    .cta__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .certifications__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .certifications__logos {
        display: flex;
        justify-content: center;
    }

    .cta__content {
        text-align: center;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-white);
        padding: 80px 40px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .service-layout{
        display: block !important;
    }

    .hero__image-wrapper{
        display: none;
    }

    .hero__btns{
        display: block;
        
    }

    .hero__btns .btn--primary{
        margin-bottom: 20px;
    }

    .footer__inner{
        display: block;
        text-align: center;
    }

    .footer__col {
        margin-bottom: 30px;
    }

    .footer__col ul li {
        display: flex;
        justify-content: center;
    }

    .footer .logo {
        justify-content: center;
        text-align: left; /* Keep text aligned inside the flex item if needed, but justify-content centers the flex items */
    }

   

    

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 10px;
    }

    .header__actions {
        display: none;
    }

    .burger {
        display: block;
        z-index: 1001;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
        bottom: auto;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    /* Service Page Mobile */
    .service-layout {
        gap: 30px;
    }

    .service-detail-image {
        max-height: 300px;
    }

    .service-content h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }
    
    .stage-number {
        font-size: 1.5rem;
    }
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    color: var(--primary-color);
    margin-bottom: 0;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.5;
}

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Detail */
.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-image-wrapper {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Stages */
.stages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.stage-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(26, 77, 46, 0.1);
    line-height: 1;
}

.stage-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Benefits */
.benefits-list {
  
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.benefits-list li i {
    color: var(--accent-color);
}

/* Sidebar */
.sidebar-widget {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.sidebar-widget.bg-light {
    background-color: var(--bg-light);
    border: none;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.other-services li {
    border-bottom: 1px solid var(--border-color);
}

.other-services li:last-child {
    border-bottom: none;
}

.other-services li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-weight: 600;
    color: var(--text-color);
}

.other-services li a:hover {
    color: var(--primary-color);
}

/* Service Page Active Link */
.other-services li a.active {
    color: var(--primary-color);
    background-color: var(--bg-light);
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

/* Fix for dynamic stages classes */
.stage-item__number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(26, 77, 46, 0.1);
    line-height: 1;
}

.stage-item__title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.stage-item__text {
    color: var(--text-light);
}