/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2540;
    --secondary-color: #2a4365;
    --accent-color: #c53030;
    --accent-light: #fed7d7;
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --gray-color: #4a5568;
    --light-gray: #e2e8f0;
    --success-color: #38a169;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --warning-color: #d69e2e;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 6px;
    --border-radius-sm: 4px;
    --border-radius-lg: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.overflow {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 8px rgba(197, 48, 48, 0.3);
}

.btn-primary:hover {
    background-color: #9b2c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(197, 48, 48, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(10, 37, 64, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/*  Wrapper */
.-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    overflow: hidden;
}

/*  & Navigation */
. {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    width: 100%;
}

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

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

.logo-can {
    display: flex;
    gap: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.logo-can::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.can-letter {
    width: 36px;
    height: 36px;
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 3px;
    transition: var(--transition);
}

.can-letter:nth-child(1) {
    transform: translateY(-2px);
}

.can-letter:nth-child(2) {
    transform: translateY(0);
}

.can-letter:nth-child(3) {
    transform: translateY(2px);
}

.logo:hover .can-letter:nth-child(1) {
    transform: translateY(2px);
}

.logo:hover .can-letter:nth-child(2) {
    transform: translateY(-2px);
}

.logo:hover .can-letter:nth-child(3) {
    transform: translateY(0);
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.full-name {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: -5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--gray-color);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

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

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

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

/* Language Dropdown */
.language-dropdown {
    position: relative;
    z-index: 2000;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--gray-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.language-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.current-lang {
    font-weight: 600;
    min-width: 25px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-heavy);
    min-width: 120px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-color);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary-color);
}

/* Motto Styling */
.motto-overflow {
    margin-bottom: 2.5rem;
    position: relative;
}

.motto {
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.motto-line {
    height: 4px;
    width: 100px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    margin-top: 10px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 25% 0);
    z-index: 0;
    opacity: 0.95;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1.2;
    width: 100%;
}

.hero .motto {
    font-size: 3.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero .motto-line {
    background: linear-gradient(90deg, white, var(--accent-light));
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 3rem;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 24px;
}

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

.hero-image {
    flex: 1;
}

.image-placeholder {
    height: 380px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-heavy);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.image-placeholder i {
    font-size: 4.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    max-width: 90%;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    width: 100%;
}

.about-intro {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-list {
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    padding: 12px 15px;
    background-color: var(--light-color);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--accent-color);
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-list li:hover {
    background-color: rgba(197, 48, 48, 0.05);
    transform: translateX(5px);
}

.about-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
    min-width: 24px;
}

.about-mission {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-approach {
    color: var(--gray-color);
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-image {
    flex: 1;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-desc {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-list {
    margin-top: 25px;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--light-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--success-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    counter-reset: step-counter;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 25px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--light-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: 0 4px 8px rgba(197, 48, 48, 0.3);
}

.step-title {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 20px 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step-desc {
    color: var(--gray-color);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--light-color);
}

.why-content {
    display: flex;
    gap: 60px;
}

.why-text {
    flex: 1;
    width: 100%;
}

.why-list {
    margin-bottom: 50px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 15px 20px;
    background-color: white;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.why-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-list i {
    color: var(--success-color);
    font-size: 1.3rem;
    min-width: 24px;
}

.clients-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.client-item {
    background-color: white;
    padding: 18px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    color: var(--gray-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.client-item:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.why-image {
    flex: 1;
}

/* Geography Section */
.geography {
    padding: 100px 0;
    background-color: white;
    background-image: linear-gradient(45deg, #f7fafc 25%, transparent 25%), 
                      linear-gradient(-45deg, #f7fafc 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f7fafc 75%), 
                      linear-gradient(-45deg, transparent 75%, #f7fafc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.geo-content {
    text-align: center;
}

.geo-text {
    margin-bottom: 50px;
}

.geo-text p {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.geo-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.city-item {
    background-color: white;
    padding: 18px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.city-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

/* Confidentiality Section */
.confidentiality {
    padding: 100px 0;
    background-color: var(--light-color);
}

.confidentiality-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.confidentiality-text {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.confidentiality-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.confidentiality-item {
    background-color: white;
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.confidentiality-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.confidentiality-item .conf-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Contact Section - Updated */
.contact {
    padding: 100px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), 
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a2540"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%232a4365" stroke-width="1"/></svg>');
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background-color: var(--accent-color);
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-text {
    flex: 1;
    width: 100%;
}

.contact .motto {
    font-size: 2.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact .motto-line {
    background: linear-gradient(90deg, white, var(--accent-light));
}

.contact-intro {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    min-width: 30px;
}

/* WhatsApp overflow - New */
.whatsapp-overflow {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--border-radius);
    padding: 35px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.whatsapp-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.whatsapp- {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp- i {
    font-size: 2.5rem;
    color: var(--whatsapp-green);
}

.whatsapp- h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.whatsapp-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
    color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.whatsapp-btn:hover::after {
    transform: translateX(100%);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

.whatsapp-btn .fa-external-link-alt {
    font-size: 1rem;
    opacity: 0.8;
}

.whatsapp-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.whatsapp-note i {
    color: var(--whatsapp-green);
}

/* Service Selector - New (Replaces Contact Form) */
.service-selector {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.selector- {
    text-align: center;
    margin-bottom: 40px;
}

.selector- h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.selector- p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.situation-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.situation-btn {
    background-color: var(--light-color);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.situation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.situation-btn:hover::before {
    transform: translateX(100%);
}

.situation-btn.clicked {
    background-color: rgba(37, 211, 102, 0.1);
    border-color: var(--whatsapp-green);
}

.situation-btn i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.situation-btn:hover i {
    transform: scale(1.1);
}

.situation-btn span {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.situation-btn p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.situation-btn:hover {
    background-color: rgba(197, 48, 48, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.situation-btn[data-situation="emergency"] i {
    color: var(--accent-color);
}

.situation-btn[data-situation="biological"] i {
    color: #9b2c2c;
}

.situation-btn[data-situation="odor"] i {
    color: #2d3748;
}

.situation-btn[data-situation="hoarding"] i {
    color: #d69e2e;
}

.situation-btn[data-situation="aftermath"] i {
    color: #3182ce;
}

.situation-btn[data-situation="other"] i {
    color: #805ad5;
}

.selector-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

.info-card h4 {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-card p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Footer - Updated */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer .logo {
    align-items: flex-start;
}

.footer .logo-text h2 {
    color: white;
    font-size: 2.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer .full-name {
    color: var(--accent-color);
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer .motto {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact i {
    color: var(--accent-color);
    min-width: 20px;
}

.footer-contact .fa-whatsapp {
    color: var(--whatsapp-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-wrap: wrap;
}

.footer-notice i {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-content,
    .about-content,
    .why-content,
    .contact-content {
        flex-direction: column;
    }
    
    .hero-image,
    .about-image,
    .why-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero::before {
        width: 100%;
        height: 40%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.8;
    }
    
    .hero .motto {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .contact .motto {
        font-size: 2.4rem;
    }
    
    .situation-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-heavy);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        gap: 0;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 18px 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 150px 0 70px;
    }
    
    .hero .motto {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 15px;
        border-radius: var(--border-radius-sm);
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 12px 15px;
        border-radius: var(--border-radius-sm);
        margin-bottom: 2rem;
        font-weight: 600;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }
    
    .motto {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .process-step {
        max-width: 100%;
        width: 100%;
        min-width: unset;
        padding: 50px 30px 40px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .contact .motto {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .contact-intro {
        font-size: 1.2rem;
        line-height: 1.3;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: var(--border-radius-sm);
    }
    
    .contact-item {
        font-size: 1rem;
        flex-wrap: wrap;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 12px 15px;
        border-radius: var(--border-radius-sm);
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer .logo {
        align-items: center;
    }
    
    .footer .motto {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .footer-info {
        justify-content: center;
        gap: 40px;
        width: 100%;
    }
    
    .footer-links {
        align-items: center;
        width: 100%;
    }
    
    .footer-contact {
        text-align: center;
        width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .situation-buttons {
        grid-template-columns: 1fr;
    }
    
    .situation-btn {
        min-height: 120px;
        padding: 20px 15px;
    }
    
    .situation-btn span {
        font-size: 1.1rem;
    }
    
    .selector-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .whatsapp-container {
        padding: 25px 20px;
        margin-top: 30px;
        background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.15) 100%);
    }
    
    .whatsapp-btn {
        font-size: 1rem;
        padding: 18px 25px;
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp- h3 {
        font-size: 1.3rem;
    }
    
    .whatsapp-description {
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
        padding: 20px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .image-placeholder p {
        font-size: 1.1rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
        line-height: 1.4;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: var(--border-radius-sm);
    }
    
    .about-desc, .about-mission {
        font-size: 1rem;
    }
    
    .about-list li {
        padding: 15px;
        font-size: 1rem;
    }
    
    .why-list li {
        padding: 15px;
        font-size: 1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .client-item {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .geo-cities {
        gap: 12px;
    }
    
    .city-item {
        padding: 15px 20px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 45%;
    }
    
    .confidentiality-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .confidentiality-item {
        padding: 30px 20px;
    }
    
    .confidentiality-item .conf-icon {
        font-size: 2.5rem;
    }
    
    .language-toggle {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .current-lang {
        min-width: 20px;
    }
    
    .service-selector {
        padding: 25px 20px;
    }
    
    .selector- h3 {
        font-size: 1.5rem;
    }
    
    .selector- p {
        font-size: 1rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .logo-can {
        padding: 8px;
    }
    
    .can-letter {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .full-name {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 130px 0 50px;
    }
    
    .hero .motto {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        padding: 12px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 10px 12px;
    }
    
    .hero-info {
        padding: 15px;
        gap: 15px;
    }
    
    .info-item {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .motto {
        font-size: 1.8rem;
    }
    
    .image-placeholder {
        height: 220px;
        padding: 15px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .image-placeholder p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .about, .services, .process, .why-us, .geography, .confidentiality, .contact {
        padding: 60px 0;
    }
    
    .about-intro {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .about-list li {
        padding: 12px 10px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .about-list i {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-desc {
        font-size: 0.95rem;
    }
    
    .process-step {
        padding: 45px 25px 35px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-desc {
        font-size: 0.95rem;
    }
    
    .why-list li {
        padding: 12px 15px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .why-list i {
        font-size: 1.1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .client-item {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .geo-text p {
        font-size: 1rem;
    }
    
    .geo-cities {
        gap: 10px;
    }
    
    .city-item {
        padding: 12px 15px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 45%;
    }
    
    .confidentiality-text {
        font-size: 1rem;
    }
    
    .confidentiality-item {
        padding: 25px 15px;
    }
    
    .confidentiality-item .conf-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact .motto {
        font-size: 1.6rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 12px;
    }
    
    .contact-info {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-item {
        font-size: 0.95rem;
        gap: 12px;
        padding: 10px 12px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .whatsapp-container {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .whatsapp- {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .whatsapp- i {
        font-size: 2rem;
    }
    
    .whatsapp- h3 {
        font-size: 1.2rem;
    }
    
    .whatsapp-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whatsapp-btn {
        padding: 16px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .whatsapp-btn i {
        font-size: 1.2rem;
    }
    
    .whatsapp-note {
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .service-selector {
        padding: 20px 15px;
    }
    
    .selector- {
        margin-bottom: 30px;
    }
    
    .selector- h3 {
        font-size: 1.3rem;
    }
    
    .selector- p {
        font-size: 0.95rem;
    }
    
    .situation-btn {
        min-height: 110px;
        padding: 15px 10px;
    }
    
    .situation-btn i {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    
    .situation-btn span {
        font-size: 1rem;
    }
    
    .situation-btn p {
        font-size: 0.85rem;
    }
    
    .selector-info {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .info-card {
        gap: 10px;
    }
    
    .info-card i {
        font-size: 1.7rem;
        min-width: 35px;
    }
    
    .info-card h4 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        gap: 15px;
    }
    
    .footer .logo-text h2 {
        font-size: 1.8rem;
    }
    
    .footer .full-name {
        font-size: 0.8rem;
    }
    
    .footer .motto {
        font-size: 1.4rem;
    }
    
    .footer-info {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        gap: 15px;
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .footer-notice {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .language-menu {
        min-width: 100px;
    }
    
    .lang-option {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .about-intro {
        font-size: 1rem;
        padding: 10px;
    }
    
    .contact .motto {
        font-size: 1.5rem;
        
    }
    
    .contact-intro {
        font-size: 1rem;
        padding: 10px;
    }
    
    .situation-btn {
        min-height: 100px;
        padding: 12px 8px;
    }
    
    .situation-btn span {
        font-size: 0.9rem;
    }
    
    .situation-btn p {
        font-size: 0.8rem;
    }
    
    .city-item {
        min-width: 100%;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    .menu-toggle{
        margin-left: 40px;
    }
    .footer .motto {
        font-size: 1.3rem;
    }
    .hero .motto-line {
        margin-bottom: 10px;
    }
    .hero .motto {
        font-size: 1.6rem;
        margin-top: -35px;
    }
    .hero-subtitle{
        margin-top: 1px;
    }
    .section-title {
        font-size: 1.3rem;
    }
}

/* ========== ИСПРАВЛЕНИЕ ДЛЯ ВСЕХ ЯЗЫКОВ ========== */
/* Убеждаемся, что длинные слова в любом языке переносятся */
* {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Особые настройки для длинного текста в hero секции */
.hero-title,
.hero-subtitle,
.hero-description {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Улучшаем читаемость длинного текста на мобильных */
@media (max-width: 768px) {
    .hero-subtitle,
    .hero-description,
    .about-intro,
    .contact-intro {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Убираем горизонтальный скролл */
body, .container, .hero-content, .about-content, .why-content, .contact-content {
    max-width: 100%;

}

/* Исправление для очень длинных слов в кнопках */
.btn, .situation-btn span, .whatsapp-btn span {
    white-space: normal;
    line-height: 1.3;
}

/* Исправление для элементов с динамическим контентом */
[data-key] {
    display: inline-block;
    max-width: 100%;
}

overflow