* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.ecosystem,
.standards,
.solutions,
.cta,
footer,
.about-section,
.mission-vision,
.values-section,
.why-us,
.stats-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.ecosystem.visible,
.standards.visible,
.solutions.visible,
.cta.visible,
footer.visible,
.about-section.visible,
.mission-vision.visible,
.values-section.visible,
.why-us.visible,
.stats-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.ecosystem {
    padding: 80px 0;
    text-align: center;
}
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 50px;
    text-align: center;
}
.ecosystem-card {
    background: #1a1a1a;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    transition: all 0.05s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.visible .ecosystem-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.visible .ecosystem-card:nth-child(1) {
    transition-delay: 0s;
}
.visible .ecosystem-card:nth-child(2) {
    transition-delay: 0s;
}
.visible .ecosystem-card:nth-child(3) {
    transition-delay: 0s;
}
.visible .ecosystem-card:nth-child(4) {
    transition-delay: 0s;
}
.ecosystem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1), transparent 70%);
    transform: scale(0);
    transition: transform 0.05s ease;
}
.ecosystem-card:hover::before {
    transform: scale(1);
}
.ecosystem-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.3);
    background: #242424;
}
.ecosystem-card-icon {
    color: #E31E24;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.05s ease;
}
.ecosystem-card:hover .ecosystem-card-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.6));
}
.ecosystem-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: color 0.05s ease;
}
.ecosystem-card:hover h3 {
    color: #E31E24;
}
.ecosystem-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: color 0.05s ease;
}
.ecosystem-card:hover p {
    color: #bbb;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeInDown 0.6s ease-out;
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    animation: fadeInLeft 0.6s ease-out;
}
.logo-image {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}
.logo-image:hover {
    transform: scale(1.05) rotate(2deg);
}
.logo-icon {
    background: #E31E24;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}
.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}
.nav-links li {
    animation: fadeInDown 0.6s ease-out;
    animation-fill-mode: both;
}
.nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}
.nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}
.nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}
.nav-links li:nth-child(4) {
    animation-delay: 0.4s;
}
.nav-links li:nth-child(5) {
    animation-delay: 0.5s;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover,
.nav-links a.active {
    background-color: #E31E24;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}
.btn-contact {
    background: #E31E24;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    animation: fadeInRight 0.6s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}
.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}
.btn-contact:hover::before {
    left: 100%;
}
.btn-contact:hover {
    background: #c41a1f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.team-section .section-header .section-label,
.team-section .section-header .section-title,
.team-section .section-header .section-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.team-section .section-header {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 0.8s ease-out !important;
}
.team-section.visible .section-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.team-card {
    background-color: #fff;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    text-align: center;
}
.team-card.team-card-visible {
    opacity: 1;
    transform: translateY(0);
}
.team-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease !important;
}
.team-img-wrapper {
    height: 280px;
    overflow: hidden;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    padding: 20px;
}
.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #222;
}
.team-info span {
    color: #E31E24;
    font-weight: bold;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.team-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}
.founder-row {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.founder-card {
    max-width: 400px;
    border: 2px solid rgba(227, 30, 36, 0.2) !important;
}
.founder-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.15) !important;
}
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero-badge {
    width: fit-content;
    display: inline-block;
    background: rgba(227, 30, 36, 0.1);
    color: #E31E24;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(227, 30, 36, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: all 0.3s ease;
}
.hero-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}
.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-text h1 .highlight {
    color: #E31E24;
    font-style: italic;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}
.hero-text p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 1s both;
}
.hero-image {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 450px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 30, 36, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hero-image:hover::before {
    opacity: 1;
}
.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}
.hero-image-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transition: all 0.4s ease
}
.hero-image:hover .hero-image-content {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}
.hero-image-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-image-content p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.4;
}
.glass-box {
    background: rgba(255, 255, 255, 0.877);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(227, 30, 36, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-bottom: 0;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
    transition: all 0.4s ease;
}
.glass-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.3);
}
.btn-primary {
    white-space: nowrap;
    background: #E31E24;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}
.btn-primary:hover {
    background: #c41a1f;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}
.btn-secondary {
    white-space: nowrap;
    background: transparent;
    color: #333;
    padding: 15px 30px;
    border: 2px solid #333;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #333;
    transition: left 0.4s ease;
    z-index: -1;
}
.btn-secondary:hover::before {
    left: 0;
}
.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
#bg-animation {
    max-width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0e0d0d 0%, #f0f0f0 100%);
    pointer-events: none;
}
.section-header {
    text-align: center;
    z-index: 10;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section-label {
    color: #E31E24;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #222;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.section-description {
    color: #666;
    display: block;
    font-size: 1.1rem;
    margin-left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.visible .section-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.visible .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.visible .section-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
.card-link {
    color: #E31E24;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.05s ease;
}
.card-link:hover {
    gap: 10px;
}
.standards {
    background: #f8f8f8;
    padding: 80px 0;
}
.standards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.standards-image {
    background: #d0d0d0;
    border-radius: 15px;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateX(-50px);
}
.standards-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.standards-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.standards-image:hover img {
    transform: scale(1.1);
}
.standards-image:hover .experience-badge {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
}
.standards-text ul {
    list-style: none;
    margin-top: 20px;
}
.standards-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.standards-text li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}
.standards-text li:hover {
    transform: translateX(10px);
    color: #E31E24;
}
.standards-text li::before {
    content: '✓';
    color: #E31E24;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.standards-text li:hover::before {
    transform: scale(1.3) rotate(360deg);
}
.visible .standards-image {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}
.visible .standards-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}
.visible .standards-text li {
    opacity: 1;
    transform: translateX(0);
}
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #E31E24;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
}
.experience-badge .number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.8rem;
    margin-top: 5px;
}
.solutions {
    padding: 80px 0;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.solution-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 350px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 30, 36, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.solution-card:hover::before {
    opacity: 1;
}
.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.solution-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transition: all 0.4s ease;
}
.solution-card:hover .solution-card-overlay {
    padding: 40px;
    background: linear-gradient(to top, rgba(227, 30, 36, 0.9), transparent);
}
.solution-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E31E24;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.solution-card:hover .solution-label {
    color: white;
    transform: translateY(-5px);
}
.solution-card h3 {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.solution-card:hover h3 {
    transform: translateY(-5px);
}
.cta {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.4);
}
.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.btn-white {
    background: white;
    color: #E31E24;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #E31E24;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-white:hover::before {
    width: 400px;
    height: 400px;
}
.btn-white:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.btn-outline-white {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
}
.btn-outline-white:hover::before {
    left: 0;
}
.btn-outline-white:hover {
    color: #E31E24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.footer-column ul li:hover {
    transform: translateX(5px);
}
.footer-column a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E31E24;
    transition: width 0.3s ease;
}
.footer-column a:hover::after {
    width: 100%;
}
.footer-column a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;   
    align-items: center;      
    justify-content: center;  
    text-align: center;        
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: #eee0e0;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    display: inline-block;
}
.social-links a:hover {
    color: #E31E24;
    transform: translateY(-5px) scale(1.2) rotate(10deg);
}
.page-header {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: float 10s ease-in-out infinite;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.contact-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.contact-info-card .social-links {
    display: flex;
    gap: 12px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}
.contact-info-card {
    background: #1a1a1a;
    color: white;
    padding: 40px;
    border-radius: 15px;
    transition: all 0.4s ease;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.contact-info-card > p {
    color: #999;
    margin-bottom: 30px;
}
.contact-hero {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.contact-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out;
    width: auto;
    text-transform: none;
    letter-spacing: normal;
}
.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    font-weight: 800;
}
.contact-hero-content h1 .highlight {
    color: white;
    font-style: italic;
    display: block;
    margin-top: 10px;
    font-weight: 600;
}
.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.contact-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}
.contact-card-modern:nth-child(1) { animation-delay: 0.1s; }
.contact-card-modern:nth-child(2) { animation-delay: 0.2s; }
.contact-card-modern:nth-child(3) { animation-delay: 0.3s; }
.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(227, 30, 36, 0.15);
}
.contact-card-header {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    padding: 50px 35px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.contact-card-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.contact-card-modern:hover .contact-card-icon {
    transform: scale(1.15) rotate(15deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}
.contact-card-icon i {
    font-size: 2.5rem;
    color: white;
}
.contact-card-header h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.contact-card-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}
.contact-methods-modern {
    padding: 35px;
}
.contact-link-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}
.contact-link-modern:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.25);
}
.contact-link-modern.phone i {
    color: #E31E24;
    font-size: 1.4rem;
}
.contact-link-modern.phone:hover i {
    color: white;
}
.contact-link-modern.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
}
.contact-link-modern.whatsapp i {
    font-size: 1.6rem;
}
.contact-link-modern.whatsapp:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #128c4a 100%);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}
.contact-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}
.contact-location-modern {
    margin-top: 25px;
    padding: 0 15px; 
}
.contact-location-modern h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.contact-location-modern h4 i {
    color: #E31E24;
}
.form-description {
    color: #666;
    margin-bottom: 30px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.form-group:focus-within label {
    color: #E31E24;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E31E24;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
    transform: translateY(-2px);
}
.form-group textarea {
    resize: vertical;
}
.form-group-modern {
    margin-bottom: 25px;
}
.form-group-modern label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.form-group-modern label i {
    color: #E31E24;
    margin-right: 8px;
}
.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f9f9f9;
}
.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #E31E24;
    background: white;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.1);
}
.form-group-modern textarea {
    resize: vertical;
    min-height: 120px;
}
.form-message {
    display: none;
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    font-weight: 600;
    animation: slideDown 0.4s ease-out;
}
.form-message.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #10b981;
}
.form-message.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 2px solid #ef4444;
}
.form-message i {
    margin-right: 10px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.checkbox-label:hover {
    color: #E31E24;
}
.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.checkbox-label input[type="checkbox"]:checked {
    transform: scale(1.2);
}
.checkbox-label span {
    color: #666;
    font-size: 0.9rem;
}
.checkbox-label a {
    color: #E31E24;
    text-decoration: none;
    transition: all 0.3s ease;
}
.checkbox-label a:hover {
    text-decoration: underline;
    color: #c41a1f;
}
.btn-submit {
    background: #E31E24;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}
.btn-submit::before,
.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}
.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}
.btn-submit:hover {
    background: #c41a1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}
.btn-submit .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.btn-submit:hover .arrow {
    transform: translateX(5px);
}
.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-submit-modern:hover::before {
    width: 300px;
    height: 300px;
}
.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}
.btn-submit-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-submit-modern span {
    position: relative;
    z-index: 1;
}
.btn-submit-modern i {
    margin-right: 8px;
}
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}
.info-item:hover {
    transform: translateX(5px);
}
.info-item:last-of-type {
    border-bottom: none;
}
.info-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.info-item:hover .info-icon {
    background: #E31E24;
    transform: scale(1.1) rotate(5deg);
}
.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}
.info-content p {
    color: #999;
    margin-bottom: 5px;
}
.info-content a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}
.info-content a:hover {
    color: #E31E24;
}
.info-alert-modern {
    margin: 0 35px 35px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e40af;
    font-size: 0.9rem;
}
.info-alert-modern i {
    font-size: 1.2rem;
}
.social-media {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}
.social-media h4 {
    margin-bottom: 15px;
    color: white;
}
.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.map-container-modern {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}
.map-container-modern:hover {
    border-color: #E31E24;
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
}
.faq-section {
    padding: 80px 0;
    background: #f8f8f8;
}
.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #f8f8f8;
}
.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    transition: color 0.3s ease;
}
.faq-item:hover .faq-question h3 {
    color: #E31E24;
}
.faq-icon {
    font-size: 1.5rem;
    color: #E31E24;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
}
.about-section {
    padding: 80px 0;
    background: #fff;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.about-image:hover img {
    transform: scale(1.1);
}
.mission-vision {
    padding: 80px 0;
    background: #ffffff;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.05s ease;
}
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.2);
}
.mv-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.05s ease;
}
.mv-card-icon {
    stroke: #E31E24;            
    stroke-width: 1.5;     
    width: 50px;             
    height: 50px;
    transition: all 0.1s ease-out; 
}
.mv-card:hover .mv-card-icon {
    stroke: #E31E24;       
    transform: scale(1.1);
}
.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    transition: all 0.05s ease;
}
.mv-card:hover h3 {
    color: #E31E24;
}
.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.value-card {
    background: #1a1a1a;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.05s ease;
}
.val-icon {
    stroke: #ffffff;          
    stroke-width: 1.5;      
    width: 45px;             
    height: 45px;
    transition: all 0.1s ease-out; 
}
.value-card:hover .val-icon {
    stroke: #E31E24;         
    transform: scale(1.1);
}
.value-card:hover {
    transform: translateY(-10px);
    background: #242424;
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.3);
}
.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.05s ease;
} 

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.6));
}
.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    transition: all 0.05s ease;
}
.value-card:hover h3 {
    color: #E31E24;
}
.value-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}
.value-card:hover p {
    color: #bbb;
}
.why-us {
    padding: 80px 0;
    background: #fff;
}
.why-us-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.why-us-item {
    background: #85848428;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.05s ease;
}
.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.2);
}
.why-number {
    font-size: 3rem;
    font-weight: bold;
    color: #E31E24;
    line-height: 1;
    min-width: 80px;
    transition: all 0.05s ease;
}
.why-us-item:hover .why-number {
    transform: scale(1.1);
}
.why-us-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.why-us-item p {
    color: #666;
    line-height: 1.6;
}
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    
}
.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.05s ease;
}
.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.05s ease;
}
.stat-card:hover .stat-number {
    transform: scale(1.1);
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
.stats-grid-portfolio {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.stat-card-portfolio {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}
.stat-card-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E31E24 0%, #c41a1f 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.stat-card-portfolio:hover::before {
    transform: scaleX(1);
}
.stat-card-portfolio:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.25);
}
.stat-icon-portfolio {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}
.stat-card-portfolio:hover .stat-icon-portfolio {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.4);
}
.stat-icon-portfolio i {
    font-size: 2.2rem;
    color: white;
}
.stat-number-portfolio {
    font-size: 3rem;
    font-weight: 800;
    color: #E31E24;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    letter-spacing: -1px;
}
.stat-card-portfolio:hover .stat-number-portfolio {
    transform: scale(1.12);
    color: #c41a1f;
}
.stat-label-portfolio {
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.visible .stat-card-portfolio {
    opacity: 1;
    transform: translateY(0);
}
.visible .stat-card-portfolio:nth-child(1) { transition-delay: 0.1s; }
.visible .stat-card-portfolio:nth-child(2) { transition-delay: 0.2s; }
.visible .stat-card-portfolio:nth-child(3) { transition-delay: 0.3s; }
.visible .stat-card-portfolio:nth-child(4) { transition-delay: 0.4s; }


.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366; 
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.2s ease-out; 
}
.whatsapp-fixed i {
    font-size: 1.5rem;
}
.whatsapp-fixed:hover {
    transform: translateY(-5px) scale(1.05); 
    background: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}
.portfolio-hero {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.portfolio-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.portfolio-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.portfolio-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
    font-weight: 800;
}
.portfolio-hero-content h1 .highlight {
    color: white;
    font-style: italic;
    display: block;
    margin-top: 10px;
    font-weight: 600;
}
.portfolio-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.portfolio-filters {
    padding: 5px 0 10px;
    background: #fff;
}
.portfolio-section {
    padding: 50px 0 100px;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}
.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}
.portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(227, 30, 36, 0.15);
}
.portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff 100%);
}
.portfolio-image-area {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    padding: 55px 30px 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.portfolio-image-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.project-icon i {
    font-size: 2.8rem;
    color: white;
    transition: all 0.4s ease;
}
.project-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.portfolio-item:hover .project-icon {
    transform: scale(1.15) rotate(15deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
.portfolio-item:hover .project-icon i {
    transform: scale(1.1);
}
.portfolio-image-area h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}
.portfolio-image-area .project-type {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.portfolio-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}
.portfolio-tags .tag {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-tags .tag {
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
    transform: translateY(-2px);
}
.portfolio-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
}
.portfolio-info .project-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
}
.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 18px rgba(227, 30, 36, 0.25);
    position: relative;
    overflow: hidden;
}
.portfolio-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}
.portfolio-link:hover::before {
    width: 300px;
    height: 300px;
}
.portfolio-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}
.portfolio-link i {
    position: relative;
    z-index: 1;
}
.portfolio-link span {
    position: relative;
    z-index: 1;
}
.portfolio-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.85);
    position: absolute;
    pointer-events: none;
}
.portfolio-item.show {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: all;
}
.visible .portfolio-item {
    opacity: 1;
    transform: translateY(0);
}
.visible .portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.visible .portfolio-item:nth-child(2) { transition-delay: 0.2s; }
.visible .portfolio-item:nth-child(3) { transition-delay: 0.3s; }
.visible .portfolio-item:nth-child(4) { transition-delay: 0.4s; }
.visible .portfolio-item:nth-child(5) { transition-delay: 0.5s; }
.visible .portfolio-item:nth-child(6) { transition-delay: 0.6s; }


.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.filter-btn {
    background: white;
    color: #333;
    padding: 14px 32px;
    border: 2px solid #e8e8e8;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.filter-btn:nth-child(1) { animation: fadeInUp 0.5s ease-out 0.1s forwards; }
.filter-btn:nth-child(2) { animation: fadeInUp 0.5s ease-out 0.2s forwards; }
.filter-btn:nth-child(3) { animation: fadeInUp 0.5s ease-out 0.3s forwards; }
.filter-btn:nth-child(4) { animation: fadeInUp 0.5s ease-out 0.4s forwards; }
.filter-btn:nth-child(5) { animation: fadeInUp 0.5s ease-out 0.5s forwards; }
.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}
.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}
.filter-btn:hover {
    transform: translateY(-3px);
    border-color: #E31E24;
    color: #E31E24;
}
.filter-btn.active {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    color: white;
    border-color: #E31E24;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}
.modern-contact-form {
    padding: 35px;
}
.hours-list-modern {
    padding: 35px;
}
.hour-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.hour-row-modern:hover {
    background: #f1f1f1;
    transform: translateX(5px);
}
.hour-row-modern .day {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}
.hour-row-modern .time {
    font-weight: 700;
    font-size: 1rem;
}
.hour-row-modern .time.open {
    color: #10b981;
}
.hour-row-modern .time.closed {
    color: #ef4444;
}
.hour-row-modern.sunday {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fecaca;
}
.services-section .section-header {
    position: relative;
    z-index: 5;
    margin-top: 20px; 
    opacity: 1 !important;
    visibility: visible !important;
}
.services-section .section-title {
    color: #1a1a1a !important; 
    margin-bottom: 15px;
    display: block;
}
.services-section .section-description {
    color: #666 !important;
    display: block;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: #E31E24;
    transition: height 0.3s ease;
}
.service-card:hover::before {
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #E31E24;
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}
.service-icon i {
    font-size: 2.5rem;
    color: white;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.service-card:hover h3 {
    color: #E31E24;
}
.service-card > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}
.service-features {
    list-style: none;
    padding: 0;
}
.service-features li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.service-features li:hover {
    transform: translateX(10px);
    color: #E31E24;
}
.service-features li i {
    color: #25D366;
    font-size: 1.1rem;
}


.services-hero {
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.services-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}
.services-hero-content h1 .highlight {
    color: white;
    font-style: italic;
    display: block;
    margin-top: 10px;
}
.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.services-main {
    padding: 80px 0;
    background: #fff;
}
.services-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.service-card-main {
    background: white;
    padding: 45px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.visible .service-card-main {
    opacity: 1;
    transform: translateY(0);
}
.visible .service-card-main:nth-child(1) { transition-delay: 0.1s; }
.visible .service-card-main:nth-child(2) { transition-delay: 0.2s; }
.visible .service-card-main:nth-child(3) { transition-delay: 0.3s; }
.visible .service-card-main:nth-child(4) { transition-delay: 0.4s; }
.visible .service-card-main:nth-child(5) { transition-delay: 0.5s; }
.service-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    transition: height 0.4s ease;
}
.service-card-main:hover::before {
    height: 100%;
}
.service-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.15);
    border-color: #E31E24;
}
.service-icon-main {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}
.service-card-main:hover .service-icon-main {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}
.service-icon-main i {
    font-size: 3rem;
    color: white;
}
.service-card-main h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.service-card-main:hover h3 {
    color: #E31E24;
}
.service-card-main > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}
.service-features-main {
    list-style: none;
    padding: 0;
}
.service-features-main li {
    padding: 12px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.service-features-main li:hover {
    transform: translateX(10px);
    color: #E31E24;
}
.service-features-main li i {
    color: #25D366;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.process-step {
    background: white;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #E31E24;
}
.process-step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
}
.process-step:hover .step-icon {
    background: #E31E24;
    transform: scale(1.1);
}
.process-step:hover .step-icon i {
    color: white;
}
.process-card:hover h3 {
    color: #E31E24;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.process-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}
.visible .process-card {
    opacity: 1;
    transform: translateY(0);
}
.visible .process-card:nth-child(1) { transition-delay: 0.1s; }
.visible .process-card:nth-child(2) { transition-delay: 0.2s; }
.visible .process-card:nth-child(3) { transition-delay: 0.3s; }
.visible .process-card:nth-child(4) { transition-delay: 0.4s; }
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #E31E24;
}
.process-number {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    transition: all 0.4s ease;
}
.process-card:hover .process-number {
    transform: scale(1.15) rotate(10deg);
}
.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 25px 0;
    transition: all 0.4s ease;
}
.process-card:hover .process-icon {
    background: #E31E24;
    transform: scale(1.1);
}
.process-icon i {
    font-size: 2.5rem;
    color: #E31E24;
    transition: color 0.3s ease;
}
.process-card:hover .process-icon i {
    color: white;
}
.process-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.process-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
}
.step-content {
    padding-top: 20px;
}
.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.step-icon i {
    font-size: 2rem;
    color: #E31E24;
    transition: color 0.3s ease;
}
.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.step-content p {
    color: #666;
    line-height: 1.8;
}
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-button i {
    color: white;
    font-size: 28px;
}
.button-tooltip {
    position: absolute;
    right: 75px;
    background: #1a1a1a;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.whatsapp-button:hover .button-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}
.work-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}
.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}
.visible .reason-card {
    opacity: 1;
    transform: translateY(0);
}
.visible .reason-card:nth-child(1) { transition-delay: 0.1s; }
.visible .reason-card:nth-child(2) { transition-delay: 0.2s; }
.visible .reason-card:nth-child(3) { transition-delay: 0.3s; }
.visible .reason-card:nth-child(4) { transition-delay: 0.4s; }
.visible .reason-card:nth-child(5) { transition-delay: 0.5s; }
.visible .reason-card:nth-child(6) { transition-delay: 0.6s; }
.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.2);
    border-color: #E31E24;
}
.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}
.reason-card:hover .reason-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}
.reason-icon i {
    font-size: 2.2rem;
    color: white;
}
.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.reason-card:hover h3 {
    color: #E31E24;
}
.reason-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}
pre {
    white-space: pre-wrap;   
    word-wrap: break-word;
    font-family: inherit;        
}
.hamburger-menu, .mobile-only, .mobile-nav-button {
    display: none;
}
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); } 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; } 
}
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 80px 0 60px;
    }
    .portfolio-hero-content h1 {
        font-size: 2.5rem;
    }
    .portfolio-hero-content p {
        font-size: 1.05rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .stats-grid-portfolio {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .filter-buttons {
        gap: 10px;
    }
    .filter-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .portfolio-image-area {
        padding: 45px 25px 35px;
    }
    .project-icon {
        width: 85px;
        height: 85px;
    }
    .project-icon i {
        font-size: 2.3rem;
    }
    .portfolio-image-area h3 {
        font-size: 1.4rem;
    }
    .portfolio-info {
        padding: 28px 25px;
    }
    .stat-number-portfolio {
        font-size: 2.5rem;
    }
    .contact-hero {
        padding: 80px 0 60px;
    }
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-hero-content p {
        font-size: 1.05rem;
    }
    .contact-card-header {
        padding: 40px 30px 35px;
    }
    .contact-card-icon {
        width: 80px;
        height: 80px;
    }
    .contact-card-icon i {
        font-size: 2.2rem;
    }
    .modern-contact-form,
    .contact-methods-modern,
    .hours-list-modern {
        padding: 30px 25px;
    }
    .contact-location-modern {
        padding: 0 25px 30px;
    }
    .info-alert-modern {
        margin: 0 25px 30px;
    }
    .whatsapp-fixed span {
        display: none;
    }
    .whatsapp-fixed {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .service-card-main {
        padding: 30px;
    }
    
    .process-card {
        padding: 40px 25px;
    }
    
    .service-icon-main,
    .process-icon,
    .reason-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-main i {
        font-size: 2.5rem;
    }
    
    .process-icon i {
        font-size: 2rem;
    }
    
    .reason-icon i {
        font-size: 1.8rem;
    }
    .standards-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
    .contact-info-card {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-number {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mv-card h3 {
        font-size: 1.5rem;
    }
    .hero-content {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem; 
    }
    .hero-buttons {
        flex-direction: column;
    }
    .ecosystem-grid, 
    .services-grid-main, 
    .reasons-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important; 
        align-items: center !important;
        padding: 10px 20px !important;
        width: 100%;
        box-sizing: border-box;
    }
    .logo-image {
        height: 50px !important; 
        width: auto;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
        border-radius: 0; 
    }
    .mobile-only {
        display: block; 
    }
    
    .mobile-only a {
        font-weight: bold;
        color: #E31E24 !important;
    }

    header {
        padding: 1px 0 !important; 
    }
    .nav-links {
        display: none; 
        flex-direction: column !important;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        z-index: 9999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex !important;
    }
    .logo {
    margin: 0 !important;
    flex: 0 1 auto;
    }
    .btn-contact {
        display: none !important;
    }
    .mobile-nav-button {
        display: block !important;
        padding: 15px 20px;
        width: 100%;
    }
    .btn-contact-mobile {
        background: #E31E24 !important;
        color: white !important;
        padding: 12px !important;
        border-radius: 8px !important;
        text-align: center;
        display: block !important;
        font-weight: bold;
    }
    header nav.container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
    height: 80px !important;
}
    .hamburger-menu {
    display: block !important;
    margin: 0 !important;
    font-size: 28px;
    color: #E31E24;
    cursor: pointer;
    z-index: 1001;
}
}
@media (max-width: 480px) {
    .portfolio-hero,.contact-hero, .services-hero{
        padding: 60px 0 40px;
    }
    .portfolio-hero-content h1, .services-hero-content h1, .project-icon i, .stat-icon-portfolio i,.contact-hero-content h1,.contact-card-icon i{
        font-size: 2rem;
    }
    .portfolio-hero-content p, 
    .contact-hero-content p, 
    .portfolio-info .project-desc, 
    .stat-label-portfolio,
    .hour-row-modern .day, 
    .hour-row-modern .time,
    .form-group-modern input,
    .form-group-modern textarea {
        font-size: 0.95rem;
    }
    .stats-grid-portfolio {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-stats {
        padding: 60px 0;
    }
    .portfolio-filters {
    padding: 20px 0 30px; 
    background: #fff;
    }
    .portfolio-section {
        padding: 40px 0 60px;
    }
    .portfolio-image-area {
        padding: 40px 20px 30px;
    }
    .portfolio-info {
        padding: 25px 20px;
    }
    .portfolio-link {
        padding: 13px 25px;
        font-size: 0.9rem;
    }
    .stat-card-portfolio {
        padding: 35px 25px;
    }
    .stat-icon-portfolio {
        width: 70px;
        height: 70px;
    }
    .stat-number-portfolio {
        font-size: 2.2rem;
    }
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    .contact-card-header h3 {
        font-size: 1.4rem;
    }
    .contact-card-header {
        padding: 35px 25px 30px;
    }
    .contact-card-icon, .project-icon {
        width: 75px;
        height: 75px;
    }
    .modern-contact-form,
    .contact-methods-modern,
    .hours-list-modern {
        padding: 25px 20px;
    }
    .contact-location-modern {
        padding: 0 20px 25px;
    }
    .info-alert-modern {
        margin: 0 20px 25px;
    }
    .form-group-modern input,
    .form-group-modern textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    .btn-submit-modern {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    .contact-link-modern {
        padding: 16px 20px;
        font-size: 1rem;
    }
    .map-container-modern {
        height: 220px;
    }
    .hour-row-modern {
        padding: 12px 16px;
    }
    .service-card-main h3,
    .process-card h3,
    .reason-card h3, .portfolio-image-area h3 {
        font-size: 1.3rem;
    }
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -20px;
        left: 25px;
    }
}
@media (max-width: 968px) {
    .services-grid-main, .process-grid, .services-grid, .process-timeline, .contact-grid, .form-row, .about-content, .mv-grid, .why-us-content {
        grid-template-columns: 1fr;
    }
    .reasons-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid{
        grid-template-columns: 1fr;
    }
    .contact-info-wrapper {
        position: static;
    }
}
