:root {
    --primary-bg: #fff;
    --secondary-bg: #f5f5fb;
    --footer-bg: #14203A;
    --title-color: #000;
    --accent-color: #f94140;
    --highlight-color: #f94140;
    --text-color: rgba(0, 0, 0, 0.6);
    --divider-color: #ccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Marcellus", serif;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--title-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Marcellus", serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btnAccent {
    background-color: var(--accent-color);
}

.btnHighlight {
    background-color: var(--highlight-color);
    color: #fff;
}

.sectionTitle {
    margin-bottom: 3rem;
    text-align: center;
}

.sectionSubtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.texTopLine .texContactInfo {
    padding: 0;
}

.texTopLine {
    background-color: var(--secondary-bg);
    padding: 8px 0;
    font-size: 0.85rem;
}

.texTopLineContent {
    display: flex;
    justify-content: space-between;
}


.texHeader {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 38px;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.texHeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.texLogo {
    font-family: "Marcellus", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.texLogo span {
    color: #f94140;
}

.texNav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.texNavList {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.texNavItem {
    margin-left: 30px;
    position: relative;
}

.texNavLink {
    font-weight: 500;
    position: relative;
    color: #fff;
}

.texNavLink:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.texNavLink:hover:after {
    width: 100%;
}

.texMobileToggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}


.texBanner {
    padding: 240px 0 140px 0;
    background-image: url('../images/hero-img1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.texBannerContent {
    position: relative;
    max-width: 700px;
}

.texBannerTitle {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.texBannerTitle span {
    color: var(--highlight-color);
}

.texBannerText {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
}


.texServices {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.texServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.texServiceCard {
    background-color: var(--secondary-bg);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.texServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.texServiceIcon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--title-color);
}

.texServiceTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
}


.texAbout {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.texAboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.texAboutImage {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.texAboutImage img {
    width: 100%;
    height: auto;
    display: block;
}

.texAboutText {
    margin-bottom: 2rem;
}


.texStats {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.texStatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.texStatItem {
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.texStatItem:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--divider-color);
}

.texStatNumber {
    font-family: "Marcellus", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 5px;
}

.texStatPlus {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    margin-left: 5px;
}

.texStatTitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
}


.texProcess {
    padding: 70px 0 100px 0;
    background-color: var(--footer-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.texProcess h2 {
    color: #fff;
}



.texProcess .sectionTitle,
.texProcess .sectionSubtitle {
    color: white;
}

.texProcessGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.texProcessStep {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.texProcessStep:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.texProcessNumber {
    font-family: "Marcellus", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.texProcessTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}


.texTestimonials {
    padding: 100px 0 70px 0;
    background-color: var(--primary-bg);
}

.texTestimonialsContent {
    display: flex;
    align-items: center;
    gap: 60px;
    align-items: center;
}

.texTestimonialsSlider {
    position: relative;
    width: 50%;

}

.texTestimonialSlide {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 8px;
}

.texTestimonialStars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.texTestimonialText {
    font-style: italic;
    margin-bottom: 25px;
}

.texTestimonialAuthor {
    display: flex;
    align-items: center;
}

.texTestimonialAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.texTestimonialAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texTestimonialName {
    font-weight: 600;
}

.texTestimonialPosition {
    font-size: 0.9rem;
    color: #777;
}


.texCta {
    padding: 140px 0;
    background: var(--secondary-bg) url('../images/cta.png') center no-repeat;
    background-size: cover;
    text-align: center;
    margin: 20px auto 0 auto;
}

.texCtaTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.texCtaText {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}


.texFooter {
    background-color: var(--footer-bg);
    color: white;
    padding: 80px 0 30px;
}

.texFooterContent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.texFooterLogo {
    font-family: "Marcellus", serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
    display: inline-block;
}

.texFooterLogo span {
    color: var(--highlight-color);
}

.texFooterAbout {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.texFooterTitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.texFooterList {
    list-style: none;
}

.texFooterItem {
    margin-bottom: 12px;
}

.texFooterLink {
    transition: all 0.3s ease;
}

.texFooterLink:hover {
    color: var(--highlight-color);
}

.texFooterContactItem {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.texFooterContactIcon {
    margin-right: 10px;
    color: var(--highlight-color);
    margin-top: 5px;
}

.texFooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


.texCookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 430px;
    z-index: 1001;
    display: none;
}

.texCookieTitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.texCookieText {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.texCookieActions {
    display: flex;
    gap: 10px;
}

.texCookieBtn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.texCookieAccept {
    background-color: var(--title-color);
    color: white;
}

.texCookieDecline {
    background-color: var(--secondary-bg);
    color: var(--text-color);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.texAnimate {
    animation: fadeInUp 0.8s ease forwards;
}

.texBreadcrumbs {
    padding: 20px 0;
    background-color: var(--secondary-bg);
}

.texBreadcrumbsNav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.texBreadcrumbsSeparator {
    margin: 0 10px;
    color: var(--accent-color);
}

.texBreadcrumbsCurrent {
    color: var(--accent-color);
    font-weight: 600;
}

.texAboutHero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.texAboutHeroContent {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.texAboutHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.texAboutHeroText {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.texAboutHeroStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 4rem;
}

.texAboutHeroStat {
    text-align: center;
}

.texAboutHeroNumber {
    font-family: "Marcellus", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 10px;
}

.texAboutHeroNumber span {
    color: var(--accent-color);
}

.texAboutHeroLabel {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.texApproach {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.texApproachContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.texApproachText h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.texApproachFeatures {
    margin-top: 3rem;
}

.texApproachFeature {
    display: flex;
    margin-bottom: 2.5rem;
}

.texApproachIcon {
    width: 60px;
    height: 60px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #fff;
}

.texApproachFeatureContent h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.texApproachVisual {
    position: relative;
    height: 500px;
}

.texApproachMainImage {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    line-height: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.texApproachMainImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texApproachCard {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 120px;
    transition: all 0.3s ease;
}

.texApproachCard:hover {
    transform: translateY(-5px);
}

.texApproachCard i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.texApproachCard h5 {
    font-size: 0.9rem;
    margin: 0;
}

.texApproachCard1 {
    top: 10%;
    left: -20px;
}

.texApproachCard2 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.texApproachCard3 {
    bottom: 10%;
    left: -20px;
}

@media (max-width: 768px) {
    .texAboutHeroTitle {
        font-size: 2.5rem;
    }

    .texAboutHeroStats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .texApproachContent {
        grid-template-columns: 1fr;
    }

    .texApproachVisual {
        height: 400px;
    }

    .texApproachCard {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
    }

    .texApproachCard1,
    .texApproachCard2,
    .texApproachCard3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
}

.texServicesHero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
}

.texServicesHeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.texServicesHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.texServicesHeroText {
    font-size: 1.2rem;
    color: #666;
}

.texServicesDetailed {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.texServicesTabNav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    justify-content: center;
}

.texServicesTabLink {
    padding: 15px 25px;
    background: var(--secondary-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.texServicesTabLink.active,
.texServicesTabLink:hover {
    background: var(--accent-color);
    color: white;
}

.texServicesTabPane {
    display: none;
}

.texServicesTabPane.active {
    display: block;
}



.texServiceDetailText h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.texServiceFeatures {
    margin: 2rem 0;
}

.texServiceFeature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.texServiceFeature i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.texServiceDetailVisual {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texServiceChart {
    width: 100%;
}

.texChartBar {
    margin-bottom: 20px;
}

.texChartLabel {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.texChartBarInner {
    height: 20px;
    background: var(--highlight-color);
    border-radius: 10px;
    width: 0;
    transition: width 1s ease;
}

.texInvestmentGraph {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 200px;
}

.texGraphLine {
    width: 30px;
    background: var(--highlight-color);
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
}

.texGraphLine.active {
    background: var(--accent-color);
}

.texServiceProcess {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.texProcessSteps {
    margin-top: 3rem;
}

.texProcessSteps .texProcessStep {
    padding: 0;
    margin-bottom: 40px;
}


.texProcessStepNumber {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Marcellus", serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.texProcessStepContent {
    text-align: left;
}

.texProcessStepContent h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.texProcessCircle {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.texProcessSegment {
    position: absolute;
    width: 50%;
    height: 50%;
    overflow: hidden;
    transform-origin: 100% 100%;
}

.texProcessSegment1 {
    top: 0;
    left: 0;
    transform: rotate(0deg) skew(30deg);
}

.texProcessSegment2 {
    top: 0;
    right: 0;
    transform: rotate(90deg) skew(30deg);
}

.texProcessSegment3 {
    bottom: 0;
    right: 0;
    transform: rotate(180deg) skew(30deg);
}

.texProcessSegment4 {
    bottom: 0;
    left: 0;
    transform: rotate(270deg) skew(30deg);
}

.texSegmentContent {
    position: absolute;
    width: 200%;
    height: 200%;
    text-align: center;
    transform: skew(-30deg) rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.texProcessSegment1 .texSegmentContent {
    background: var(--accent-color);
}

.texProcessSegment2 .texSegmentContent {
    background: var(--title-color);
}

.texProcessSegment3 .texSegmentContent {
    background: var(--highlight-color);
    color: var(--title-color);
}

.texProcessSegment4 .texSegmentContent {
    background: #666;
}

.texSegmentContent i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.texProcessCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

@media (max-width: 768px) {
    .texServicesHeroTitle {
        font-size: 2.5rem;
    }

    .texServicesTabNav {
        flex-direction: column;
    }

    .texServiceDetail {
        grid-template-columns: 1fr;
    }

    .texServiceProcessContent {
        grid-template-columns: 1fr;
    }

    .texProcessCircle {
        width: 300px;
        height: 300px;
    }

    .texProcessCenter {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
}




.texBreadcrumbs {
    padding: 140px 0 20px 0;
    background-color: var(--secondary-bg);
}

.texBreadcrumbsNav {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.texBreadcrumbsSeparator {
    margin: 0 10px;
    color: var(--accent-color);
}

.texBreadcrumbsCurrent {
    color: var(--accent-color);
    font-weight: 600;
}

.texContactInfo {
    padding: 80px 0;
    background-color: var(--secondary-bg);
}

.texContactInfoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.texContactInfoItem {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.texContactInfoItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.texContactInfoIcon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
}

.texContactInfoContent h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--title-color);
}

.texContactInfoContent p {
    margin-bottom: 0;
}

.texContactInfoContent a {
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.texContactInfoContent a:hover {
    color: var(--accent-color);
}

.texContactFormSection {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.texContactFormContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.texContactFormIntro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
}

.texContactFormIntro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.texContactFeatures {
    margin-top: 3rem;
}

.texContactFeature {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.texContactFeature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.texContactFeature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--title-color);
}

.texContactFeature p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.texContactFormWrapper {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.texContactForm {
    display: block;
}

.texFormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.texFormGroup {
    margin-bottom: 20px;
}

.texFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--title-color);
    font-size: 0.95rem;
}

.texFormGroup input,
.texFormGroup select,
.texFormGroup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.texFormGroup input:focus,
.texFormGroup select:focus,
.texFormGroup textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(247, 87, 9, 0.1);
}

.texFormGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.texFormSubmit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.texFormSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 50, 49, 0.3);
}

.texFormSubmit:active {
    transform: translateY(0);
}

.texFormSuccess {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.texSuccessIcon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.texFormSuccess h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.texFormSuccess p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}


.texFormSubmit.loading {
    position: relative;
    color: transparent;
}

.texFormSubmit.loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: texSpin 0.8s linear infinite;
}

@keyframes texSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 992px) {
    .texContactInfoGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .texContactFormContent {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .texContactFormContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .texContactFormIntro h2 {
        font-size: 2rem;
    }

    .texFormRow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .texContactFormWrapper {
        padding: 30px 25px;
    }

    .texContactInfoItem {
        padding: 25px;
    }

    .texContactInfoIcon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .texContactInfo {
        padding: 60px 0;
    }

    .texContactFormSection {
        padding: 60px 0;
    }

    .texContactFormWrapper {
        padding: 25px 20px;
    }

    .texContactFeature {
        flex-direction: column;

    }

    .texContactFeature i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.texPolicyHeader {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.texPolicyHeaderContent {
    text-align: center;
}

.texPolicyHeader h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.texPolicyMeta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #666;
}

.texPolicyContent {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.texPolicyMain {
    max-width: 900px;
    margin: 0 auto;
}

.texPolicySection {
    margin-bottom: 50px;
}

.texPolicySection h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 10px;
}

.texPolicySection h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--title-color);
}

.texPolicySection p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.texPolicySection ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.texPolicySection li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.texPolicyContact {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.texPolicyContact p {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .texPolicyHeader h1 {
        font-size: 2.2rem;
    }

    .texPolicyMeta {
        flex-direction: column;
        gap: 10px;
    }

    .texPolicySection h2 {
        font-size: 1.5rem;
    }
}

.texPolicyNotice {
    background: #fff8e6;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.texNoticeIcon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.texPolicyNotice p {
    margin: 0;
    line-height: 1.6;
}

.texCookiesOverview {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.texCookiesIntro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.texCookiesDefinition {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider-color);
}

.texCookieType {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--highlight-color);
}

.texCookieType h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.texCookieExamples {
    background: var(--secondary-bg);
    padding: 15px;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.texCookiesUsage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.texUsageItem {
    display: flex;
    align-items: flex-start;
}

.texUsageIcon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.texUsageContent h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.texUsageContent p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.texThirdPartyCookies {
    display: grid;
    gap: 20px;
    margin-top: 1.5rem;
}

.texThirdPartyItem {
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 8px;
}

.texThirdPartyItem h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

@media (max-width: 768px) {
    .texCookiesUsage {
        grid-template-columns: 1fr;
    }

    .texCookiesOverview {
        padding: 25px;
    }
}


































@media (max-width: 992px) {

    .texServicesGrid,
    .texStatsGrid,
    .texProcessGrid,
    .texFooterContent {
        grid-template-columns: repeat(2, 1fr);
    }

    .texAboutContent,
    .texTestimonialsContent {
        grid-template-columns: 1fr;
    }

    .texAboutImage {
        order: 2;
    }

    .texAboutText {
        order: 1;
    }

    .texBannerTitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .texMobileToggle {
        display: block;
    }

    .texNav {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: none;
    }
    .texNavLink{
        color: #111;
    }

    .texNav.active {
        right: 0;
        display: flex;
    }

    .texNavList {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .texNavItem {
        margin: 0 0 10px 0;
        width: 100%;
    }

    .texNavLink {
        display: block;
        padding: 10px 0;
    }

    .texOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
    }

    .texOverlay.active {
        display: block;
    }

    .texServicesGrid,
    .texStatsGrid,
    .texProcessGrid,
    .texFooterContent {
        grid-template-columns: 1fr;
    }

    .texStatItem:not(:last-child):after {
        display: none;
    }

    .texBannerTitle {
        font-size: 2rem;
    }

    .texCtaTitle {
        font-size: 2rem;
    }
}

@media(max-width: 767px) {
    .texTopLine {
        display: none;
    }

    .texApproachVisual {
        height: auto;
    }

    .texApproachContent {
        gap: 40px;
    }

    .texHeader {
        top: 15px;
    }

    .texBanner {
        padding: 160px 0 70px 0;
    }

    .texTestimonialsContent {
        flex-direction: column;
        gap: 15px;
    }

    .texTestimonialsSlider {
        width: 100%;
    }

    .texFooterContent {
        gap: 24px;
    }

    .texLogo {
        font-size: 22px;
    }

    .texCookiePopup {
        left: 50%;
        transform: translate(-50%, 0);
        width: 98%;
    }
}