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

:root {
    --primary-emerald: #10b981;
    --primary-emerald-dark: #059669;
    --accent-orange: #f97316;
    --accent-orange-dark: #ea580c;
    --neutral-slate: #64748b;
    --neutral-slate-light: #94a3b8;
    --background-primary: #ffffff;
    --background-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --border-light: #e2e8f0;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    transition: opacity 0.3s ease;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

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

.navigation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-identity {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.brand-identity:hover {
    transform: scale(1.05);
}

.brand-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: white;
}

.brand-text-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--neutral-slate);
    margin: 0;
}

.navigation-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.navigation-menu-item a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navigation-menu-item a:hover {
    color: var(--primary-emerald);
}

.navigation-menu-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-emerald);
    transition: width 0.3s ease;
}

.navigation-menu-item a:hover::after {
    width: 100%;
}

.navigation-menu-item a.active {
    color: var(--primary-emerald);
}

.navigation-menu-item a.active::after {
    width: 100%;
}

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

.urgent-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.urgent-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--primary-emerald-dark), var(--primary-emerald));
}

.urgent-call-btn:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

@keyframes pulse-glow {
    0%, 50%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    25% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.language-selector-wrapper {
    position: relative;
}

.language-toggle-btn {
    background: var(--background-secondary);
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-toggle-btn:hover {
    background: var(--primary-emerald);
    color: white;
}

.language-toggle-btn:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    display: none;
    min-width: 120px;
    z-index: 100;
}

.language-dropdown-menu.active {
    display: block;
}

.language-option {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.language-option:hover {
    background: var(--background-secondary);
}

.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-trigger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.mobile-menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

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

.hero-presentation-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-presentation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-visual-content {
    order: -1;
}

.hero-text-content {
    order: 1;
}

.hero-text-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.primary-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
    background: var(--accent-orange-dark);
}

.primary-cta-button:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

.secondary-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.secondary-cta-button:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

.hero-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.conversion-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
}

.urgency-indicator {
    background: var(--accent-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.social-proof-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.counter-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.geolocation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.geolocation-modal-overlay.active {
    display: flex;
}

.geolocation-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-large);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--neutral-slate);
}

.modal-close-btn:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

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

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

.geolocation-form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.geolocation-form-input:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.geolocation-form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.geolocation-form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.geolocation-form-textarea:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.geolocation-form-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.geolocation-form-submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-dark));
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.geolocation-form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.geolocation-form-submit-button:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: var(--primary-emerald);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.location-map-section {
    padding: 0;
    background: var(--background-secondary);
}

.map-embed-container {
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-information-section {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 30px 0;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
}

.footer-brand-info {
    padding-right: 40px;
}

.footer-brand-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description-text {
    color: var(--neutral-slate-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-media-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media-link:hover {
    background: var(--primary-emerald);
    transform: translateY(-3px);
    border-color: var(--primary-emerald);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.footer-contact-section h3,
.footer-navigation-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact-section h3:after,
.footer-navigation-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-emerald);
}

.footer-contact-item {
    margin-bottom: 20px;
}

.footer-contact-link {
    color: var(--neutral-slate-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-contact-link:hover {
    color: var(--primary-emerald);
}

.footer-contact-link svg,
.footer-contact-link i {
    width: 20px;
    height: 20px;
    color: var(--primary-emerald);
}

.footer-navigation-menu {
    list-style: none;
    padding: 0;
}

.footer-navigation-item {
    margin-bottom: 15px;
}

.footer-navigation-link {
    color: var(--neutral-slate-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-navigation-link:hover {
    color: var(--primary-emerald);
    transform: translateX(5px);
}

.footer-navigation-link::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-emerald);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-navigation-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--neutral-slate-light);
    font-size: 14px;
}

.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    animation: float-bounce 3s ease-in-out infinite;
}

.floating-contact-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.floating-phone-btn {
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-dark));
    color: white;
}

.floating-whatsapp-btn {
    background: #25D366;
    color: white;
}

.floating-telegram-btn {
    background: #0088cc;
    color: white;
}

.company-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@keyframes float-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast-info {
    background: var(--primary-emerald);
}

.toast-success {
    background: #10b981;
}

.toast-error {
    background: #ef4444;
}

.toast.show {
    transform: translateX(0);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-emerald);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-overlay.active {
    display: flex;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-slate-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-emerald);
}

::selection {
    background: var(--primary-emerald);
    color: white;
}

::-moz-selection {
    background: var(--primary-emerald);
    color: white;
}

button {
    cursor: pointer;
}

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

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

input,
textarea,
button,
select {
    font-family: inherit;
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .company-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .navigation-menu-list {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .navigation-menu-list.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        gap: 15px;
        border-top: 1px solid var(--border-light);
        z-index: 1000;
    }
    
    .navigation-menu-list.mobile-active .navigation-menu-item {
        width: 100%;
        text-align: center;
    }
    
    .navigation-menu-list.mobile-active .navigation-menu-item a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 16px;
    }
    
    .navigation-menu-list.mobile-active .navigation-menu-item:last-child a {
        border-bottom: none;
    }
    
    .hero-text-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .hero-visual-content {
        order: -1;
    }
    
    .hero-text-content {
        order: 1;
    }
    
    .hero-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    
    .section-title-main {
        font-size: 28px;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-action-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .navigation-wrapper {
        position: relative;
    }
    
    .navigation-wrapper.mobile-menu-open {
        position: fixed;
        width: 100%;
        z-index: 9999;
    }
    
    .navigation-wrapper.mobile-menu-open .navigation-menu-list.mobile-active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .navigation-container {
        padding: 10px 0;
    }
    
    .brand-text-wrapper h2 {
        font-size: 20px;
    }
    
    .brand-subtitle {
        font-size: 11px;
    }
    
    .urgent-call-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .language-toggle-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .hero-presentation-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-main-image {
        overflow: hidden;
    }
    
    .hero-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }
    
    .service-card-wrapper {
        margin: 0;
    }
    
    .service-image-container {
        height: 200px;
    }
    
    .service-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-item-wrapper {
        height: 250px;
    }
    
    .gallery-item-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .footer-brand-info {
        padding-right: 0;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-contact-section h3:after,
    .footer-navigation-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-link {
        justify-content: center;
    }
    
    .footer-navigation-link::before {
        display: none;
    }
    
    .footer-navigation-link:hover {
        transform: none;
    }
    
    .primary-cta-button,
    .secondary-cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .service-cta-button {
        width: 100%;
    }
    
    .testimonial-card-wrapper {
        padding: 30px 20px;
    }
    
    .advantage-item-card {
        padding: 30px 20px;
    }
    
    .company-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-text-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .company-description-paragraph {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .company-image-container {
        height: 250px;
        order: -1;
    }
    
    .company-text-content {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .section-title-main {
        font-size: 24px;
    }
    
    .primary-cta-button,
    .secondary-cta-button {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    .floating-contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .brand-text-wrapper h2 {
        font-size: 18px;
    }
    
    .service-card-wrapper {
        margin: 0;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .conversion-trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantages-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .geolocation-modal-content {
        padding: 20px;
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .urgent-call-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .language-toggle-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .navigation-actions {
        gap: 10px;
    }
    
    .brand-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 10px;
    }
    
    .hero-feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .advantage-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .reviewer-avatar-image {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .service-image-container {
        height: 150px;
    }
    
    .service-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    
    .company-text-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .company-description-paragraph {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .company-image-container {
        height: 200px;
    }
    
    .gallery-item-wrapper {
        height: 200px;
    }
    
    .gallery-item-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .navigation-container {
        padding: 8px 0;
    }
    
    .brand-subtitle {
        font-size: 10px;
    }
    
    .hero-presentation-section {
        padding: 90px 0 50px 0;
    }
    
    .hero-content-wrapper {
        gap: 25px;
    }
    
    .hero-feature-item {
        padding: 12px;
        gap: 10px;
    }
    
    .trust-badge-item {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .social-proof-counter {
        padding: 15px;
        margin: 15px 0;
    }
    
    .counter-number {
        font-size: 28px;
    }
    
    .counter-label {
        font-size: 12px;
    }
    
    .service-content-area {
        padding: 25px 20px;
    }
    
    .service-title-heading {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .service-pricing-details {
        padding: 15px;
        margin: 15px 0;
    }
    
    .service-price-amount {
        font-size: 22px;
    }
    
    .advantage-item-card {
        padding: 25px 15px;
    }
    
    .advantage-title-text {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .advantage-description-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .form-field-label {
        font-size: 14px;
    }
    
    .form-control-input,
    .form-control-textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .form-submit-button {
        padding: 15px;
        font-size: 16px;
    }
    
    .footer-information-section {
        padding: 40px 0 20px 0;
    }
    
    .footer-content-grid {
        gap: 30px;
    }
    
    .footer-brand-info h3 {
        font-size: 20px;
    }
    
    .footer-description-text {
        font-size: 14px;
    }
    
    .floating-action-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-contact-btn {
        width: 48px;
        height: 48px;
    }
    
    .floating-contact-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .geolocation-modal-overlay {
        padding: 10px;
    }
    
    .geolocation-modal-content h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .geolocation-form-input {
        padding: 12px;
        font-size: 15px;
    }
    
    .gallery-grid-container {
        gap: 15px;
    }
    
    .map-embed-container {
        height: 300px;
    }
}

@media (max-width: 360px) {
    .hero-text-content h1 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .section-title-main {
        font-size: 20px;
    }
    
    .brand-text-wrapper h2 {
        font-size: 16px;
    }
    
    .brand-subtitle {
        font-size: 10px;
    }
    
    .primary-cta-button,
    .secondary-cta-button {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 260px;
    }
    
    .service-content-area {
        padding: 20px 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .hero-presentation-section {
        padding: 90px 0 50px 0;
    }
    
    .services-showcase-section,
    .advantages-presentation-section,
    .company-about-section,
    .testimonials-showcase-section,
    .portfolio-gallery-section,
    .contact-submission-section {
        padding: 50px 0;
    }
    
    .footer-information-section {
        padding: 30px 0 15px 0;
    }
    
    .floating-action-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .floating-contact-btn {
        width: 42px;
        height: 42px;
    }
    
    .floating-contact-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .navigation-container {
        padding: 6px 0;
    }
    
    .brand-logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-right: 8px;
    }
    
    .urgent-call-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .language-toggle-btn {
        padding: 4px 6px;
        font-size: 10px;
    }
    
    .hero-content-wrapper {
        gap: 20px;
    }
    
    .hero-feature-item {
        padding: 10px;
        gap: 8px;
    }
    
    .hero-feature-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .trust-badge-item {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .social-proof-counter {
        padding: 12px;
        margin: 12px 0;
    }
    
    .counter-number {
        font-size: 24px;
    }
    
    .counter-label {
        font-size: 11px;
    }
    
    .service-image-container {
        height: 120px;
    }
    
    .service-title-heading {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .service-pricing-details {
        padding: 12px;
        margin: 12px 0;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .service-price-amount {
        font-size: 20px;
    }
    
    .service-offer-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .advantage-item-card {
        padding: 20px 12px;
    }
    
    .advantage-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .advantage-title-text {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .advantage-description-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .company-text-content h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .company-description-paragraph {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .company-image-container {
        height: 180px;
    }
    
    .testimonial-card-wrapper {
        padding: 20px 15px;
    }
    
    .reviewer-avatar-image {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .reviewer-name-title {
        font-size: 16px;
    }
    
    .review-content-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .form-field-label {
        font-size: 13px;
    }
    
    .form-control-input,
    .form-control-textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-submit-button {
        padding: 12px;
        font-size: 15px;
    }
    
    .footer-content-grid {
        gap: 25px;
    }
    
    .footer-brand-info h3 {
        font-size: 18px;
    }
    
    .footer-description-text {
        font-size: 13px;
    }
    
    .footer-contact-link {
        font-size: 13px;
    }
    
    .social-media-link {
        width: 35px;
        height: 35px;
    }
    
    .social-media-link svg {
        width: 18px;
        height: 18px;
    }
    
    .geolocation-modal-content {
        padding: 15px;
        margin: 5px;
    }
    
    .geolocation-modal-content h2 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .geolocation-form-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .gallery-grid-container {
        gap: 12px;
    }
    
    .gallery-item-wrapper {
        height: 180px;
    }
    
    .map-embed-container {
        height: 250px;
    }
    
    .section-header-wrapper {
        margin-bottom: 40px;
    }
    
    .section-subtitle-description {
        font-size: 14px;
    }
    
    .urgency-indicator {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-cta-buttons {
        gap: 15px;
    }
    
    .services-grid-container,
    .advantages-grid-layout,
    .testimonials-grid-container {
        gap: 15px;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-primary: #0f172a;
        --background-secondary: #1e293b;
        
        --text-secondary: #cbd5e1;
        --border-light: #334155;
    }
    
    .navigation-wrapper {
        border-bottom-color: var(--border-light);
    }
    
    /*.navigation-menu-list.mobile-active {
        background: var(--background-primary);
    }*/
    
    .language-dropdown-menu {
        background: var(--background-primary);
        border-color: var(--border-light);
    }
    
    .geolocation-modal-content {
        background: var(--background-primary);
        color: var(--text-primary);
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-emerald: #00ff00;
        --accent-orange: #ff8000;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-light: #666666;
    }
    
    .urgent-call-btn,
    .primary-cta-button,
    .service-cta-button {
        border: 2px solid #000000;
    }
    
    .navigation-menu-item a::after {
        height: 3px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-contact-btn {
        animation: none;
    }
    
    .urgency-indicator {
        animation: none;
    }
    
    .urgent-call-btn {
        animation: none;
    }
}

@media print {
    .navigation-wrapper,
    .floating-action-buttons,
    .geolocation-modal-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-presentation-section {
        background: none !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .hero-presentation-section::before {
        display: none;
    }
    
    .section-title-main {
        font-size: 18pt;
        margin-bottom: 10px;
    }
    
    .service-card-wrapper,
    .advantage-item-card,
    .testimonial-card-wrapper {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}

.form-control-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-control-textarea:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-dark));
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-submit-button:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

.services-showcase-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

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

.section-title-main {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}
.section-title-main-adv {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.galeria{
    color: #ffffff;
}

.section-subtitle-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-image-container {
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.service-content-area {
    padding: 30px;
}

.service-title-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color:#000;
}

.service-pricing-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background: var(--background-secondary);
    border-radius: 12px;
}

.service-price-display {
    font-size: 14px;
    color: var(--text-secondary);
}

.service-price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-emerald);
    display: block;
}

.service-offer-badge {
    background: var(--accent-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-dark));
    color: white;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.service-cta-button:focus {
    outline: 2px solid var(--primary-emerald);
    outline-offset: 2px;
}

.advantages-presentation-section {
    padding: 80px 0;
    background: white;
}

.advantages-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.advantage-item-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--background-secondary);
    transition: all 0.3s ease;
}

.advantage-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advantage-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.advantage-title-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.advantage-description-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-about-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.company-text-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.company-description-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.company-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-emerald);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.company-cta-button:hover {
    background: var(--primary-emerald-dark);
    transform: translateY(-2px);
}

.company-image-container {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
    opacity: 0.8;
}

.testimonials-showcase-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-wrapper {
    background: var(--background-secondary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.testimonial-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-profile-data {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.reviewer-name-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.review-rating-stars {
    color: #fbbf24;
    font-size: 20px;
}

.review-content-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.portfolio-gallery-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item-wrapper {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-emerald), var(--accent-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-item-wrapper:hover {
    transform: scale(1.02);
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-wrapper:hover .gallery-item-overlay {
    opacity: 1;
}

.contact-submission-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-secondary);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.form-input-group {
    margin-bottom: 25px;
}

.form-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-control-input:focus {
    outline: none;
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.footer-contact-list{
    list-style: none;
}