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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    position: relative;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
    animation: logoFloat 2s ease-in-out infinite;
}

.circle-border {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 3px solid transparent;
    border-top-color: #dc143c;
    border-right-color: #dc143c;
    border-radius: 50%;
    animation: rotate 1.5s linear infinite;
}

.circle-border-2 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px solid transparent;
    border-bottom-color: #ff1744;
    border-left-color: #ff1744;
    border-radius: 50%;
    animation: rotate 2s linear infinite reverse;
}

.preloader-content h2 {
    font-size: 2.2rem;
    color: #dc143c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out;
}

.preloader-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-out;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    background: #dc143c;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

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

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Top Bar */
.top-bar {
    background: #dc143c;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

.top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left, .top-right {
    display: flex;
    gap: 1.5rem;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Main Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 70px;
    width: auto;
}

.logo-text h1 {
    color: #dc143c;
    font-size: 1.5rem;
    margin: 0;
}

.logo-text span {
    color: #666;
    font-size: 0.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.cta-btn {
    background: #dc143c;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #b01030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c, #ff1744);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s;
    z-index: 1002;
}

.menu-toggle:hover {
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

.toggle-icon {
    position: relative;
    width: 24px;
    height: 18px;
}

.toggle-icon span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

.toggle-icon span:nth-child(1) {
    top: 0;
}

.toggle-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.toggle-icon span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active .toggle-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle.active .toggle-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Dropdown Menu - Removed */

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 140px;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 700px;
    color: #fff;
    z-index: 2;
    opacity: 0;
    animation: slideInLeft 1s forwards;
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 20, 60, 0.95);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    animation: fadeInDown 1s 0.3s forwards;
    opacity: 0;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.slide.active .slide-badge {
    opacity: 1;
}

.slide-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
    animation: fadeInUp 1s 0.5s forwards;
    opacity: 0;
}

.slide.active .slide-content h2 {
    opacity: 1;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    animation: fadeInUp 1s 0.7s forwards;
    opacity: 0;
    font-weight: 400;
}

.slide.active .slide-content p {
    opacity: 1;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: #dc143c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s;
    animation: fadeInUp 1s 0.9s forwards;
    opacity: 0;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.slide.active .slide-btn {
    opacity: 1;
}

.slide-btn:hover {
    background: #fff;
    color: #dc143c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
}

.slide-btn i {
    transition: transform 0.3s;
}

.slide-btn:hover i {
    transform: translateX(8px);
}

.slider-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}

.dot.active {
    background: #dc143c;
    width: 45px;
    border-radius: 10px;
}

.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

@keyframes slideInLeft {
    from {
        transform: translateY(-50%) translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

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

/* About Us Section */
.about-us {
    padding: 6rem 5%;
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(220, 20, 60, 0.95);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.about-badge-overlay i {
    font-size: 2rem;
}

.about-badge-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

.about-text-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #dc143c;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #dc143c;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.8rem;
    color: #dc143c;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3rem;
    background: #dc143c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.about-btn:hover {
    background: #b01030;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.about-btn i {
    transition: transform 0.3s;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-scroll].scroll-in {
    opacity: 1;
}

.about-header[data-scroll] {
    transform: translateY(50px);
}

.about-header[data-scroll].scroll-in {
    transform: translateY(0);
}

.about-image[data-scroll] {
    transform: translateX(-100px);
}

.about-image[data-scroll].scroll-in {
    transform: translateX(0);
}

.about-text-content[data-scroll] {
    transform: translateX(100px);
}

.about-text-content[data-scroll].scroll-in {
    transform: translateX(0);
}

.feature-item[data-scroll] {
    transform: scale(0.8);
}

.feature-item[data-scroll].scroll-in {
    transform: scale(1);
}

.about-btn[data-scroll] {
    transform: translateY(30px);
}

.about-btn[data-scroll].scroll-in {
    transform: translateY(0);
}

/* Services */
.services {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.services .about-container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-badge {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #ff1744);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
    border-color: #dc143c;
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 23, 68, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #dc143c, #ff1744);
    transform: rotate(10deg) scale(1.1);
}

.service-icon {
    font-size: 2.5rem;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover {
    gap: 12px;
}

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

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #dc143c;
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    color: #dc143c;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.modal-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.modal-features {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-features li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-features li i {
    color: #dc143c;
    font-size: 1.2rem;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: #dc143c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.modal-btn:hover {
    background: #b01030;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.service-card[data-scroll] {
    transform: translateY(50px);
}

.service-card[data-scroll].scroll-in {
    transform: translateY(0);
}

.services-header[data-scroll] {
    transform: translateY(50px);
}

.services-header[data-scroll].scroll-in {
    transform: translateY(0);
}

/* Team */
.team {
    background: #fff;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header .section-badge {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    border: 2px solid transparent;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #ff1744);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(220, 20, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: #fff;
    color: #dc143c;
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem 1.5rem;
    text-align: center;
}

.team-role {
    display: inline-block;
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.team-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.team-contact i {
    color: #dc143c;
    font-size: 1.1rem;
}

.team-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.team-contact a:hover {
    color: #dc143c;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header .section-badge {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #ff1744);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.15);
    border-color: #dc143c;
}

.testimonial-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(220, 20, 60, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonial-location {
    color: #dc143c;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.testimonial-location i {
    font-size: 0.9rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(220, 20, 60, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-header[data-scroll] {
    transform: translateY(50px);
    opacity: 0;
}

.testimonials-header[data-scroll].scroll-in {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-card[data-scroll] {
    transform: translateY(50px);
    opacity: 0;
}

.testimonial-card[data-scroll].scroll-in {
    transform: translateY(0);
    opacity: 1;
}

/* Partnerships */
.partnerships {
    background: #fff;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partnerships-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partnerships-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partnerships-header .section-badge {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
}

.partnerships-grid,
.ascencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    min-height: 180px;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
    border-color: #dc143c;
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s;
    margin-bottom: 1rem;
}

.partner-card:hover img {
    transform: scale(1.1);
}

.partner-card h4 {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.ascencia-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid #f0f0f0;
}

.ascencia-title {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.ascencia-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #dc143c, #ff1744);
}

.partnerships-header[data-scroll] {
    transform: translateY(50px);
    opacity: 0;
}

.partnerships-header[data-scroll].scroll-in {
    transform: translateY(0);
    opacity: 1;
}

.partner-card[data-scroll] {
    transform: scale(0.9);
    opacity: 0;
}

.partner-card[data-scroll].scroll-in {
    transform: scale(1);
    opacity: 1;
}

.ascencia-section[data-scroll] {
    transform: translateY(50px);
    opacity: 0;
}

.ascencia-section[data-scroll].scroll-in {
    transform: translateY(0);
    opacity: 1;
}

/* Contact */
.contact {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-badge {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #dc143c;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c, #ff1744);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
    color: #666;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-content a:hover {
    color: #dc143c;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    background: #f0f0f0;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form p {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc143c;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #dc143c, #ff1744);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.contact-form button i {
    transition: transform 0.3s;
}

.contact-form button:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #ff1744, #dc143c);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    padding: 4rem 5% 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-about .footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-about .footer-logo h3 {
    color: #dc143c;
    font-size: 1.3rem;
}

.footer-about p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #dc143c;
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
}

.footer-links h4,
.footer-offices h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-offices h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #dc143c;
}

.footer-links ul,
.footer-offices ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-offices ul li,
.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-offices ul li,
.footer-contact ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #dc143c;
    padding-left: 10px;
}

.footer-offices ul li i,
.footer-contact ul li i {
    color: #dc143c;
    width: 20px;
}

.footer-bottom {
    padding: 2rem 5%;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #bbb;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #dc143c;
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom i.fa-heart {
    color: #dc143c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .top-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.3rem 5%;
    }

    .top-left, .top-right {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-left a {
        font-size: 0.75rem;
    }

    .nav-container {
        position: relative;
    }

    .main-header {
        top: 70px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.65rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        padding: 0;
        box-shadow: 0 5px 30px rgba(0,0,0,0.3);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0;
        overflow: hidden;
        z-index: 999;
    }

    .nav-menu.active {
        top: 160px;
        max-height: 500px;
        padding: 2rem 0;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #dc143c, #ff1744);
    }

    .nav-menu.active {
        top: 160px;
        max-height: 500px;
        padding: 2rem 0;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 1.2rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(220, 20, 60, 0.2);
        position: relative;
        overflow: hidden;
        color: #fff;
        background: transparent;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
        transition: all 0.3s;
        transform: translateX(-50%);
        z-index: -1;
    }

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

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: #fff;
    }

    .nav-link i {
        font-size: 1.3rem;
        color: #dc143c;
        transition: transform 0.3s;
        width: 25px;
    }

    .nav-link:hover i {
        transform: scale(1.2) rotate(5deg);
    }

    .cta-btn {
        display: none;
    }

    .hero {
        height: 100vh;
        min-height: 550px;
        margin-top: 120px;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
        padding-right: 5%;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .slide-badge i {
        font-size: 0.9rem;
    }

    .slide-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .slide-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .slider-dots {
        bottom: 1.5rem;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    /* About Mobile App-like Widget */
    .about-us {
        padding: 3rem 5%;
        background: #f8f9fa;
    }

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

    .section-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .about-image img {
        height: 250px;
        object-fit: contain;
        background: #fff;
        padding: 2rem;
    }

    .about-badge-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        border-radius: 10px;
        justify-content: center;
    }

    .about-badge-overlay i {
        font-size: 1.3rem;
    }

    .about-badge-overlay span {
        font-size: 0.9rem;
    }

    .about-text-content {
        background: #fff;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        padding: 1rem;
        border-radius: 10px;
        background: #f8f9fa;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* Services Mobile */
    .services {
        padding: 3rem 5%;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* Team Mobile */
    .team {
        padding: 3rem 5%;
    }

    .team-header {
        margin-bottom: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image-wrapper {
        height: 300px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.2rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 5%;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-image {
        height: 250px;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-content h3 {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Partnerships Mobile */
    .partnerships {
        padding: 3rem 5%;
    }

    .partnerships-header {
        margin-bottom: 2.5rem;
    }

    .partnerships-grid,
    .ascencia-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
        min-height: 120px;
    }

    .partner-card img {
        max-height: 80px;
    }

    .ascencia-title {
        font-size: 1.5rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 3rem 5%;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-wrapper {
        position: static;
        padding: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .contact-form p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: row;
        align-items: flex-start;
        border-left-width: 3px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .contact-item-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .contact-item-content p,
    .contact-item-content a {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form button {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .menu-toggle {
        position: relative;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text span {
        display: none;
    }

    .nav-menu {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
    }

    .toggle-icon {
        width: 20px;
        height: 15px;
    }

    /* Preloader Mobile */
    .logo-container {
        width: 100px;
        height: 100px;
    }

    .preloader-content h2 {
        font-size: 1.5rem;
    }

    .preloader-content p {
        font-size: 0.9rem;
    }

    /* Hero Extra Small */
    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Services Extra Small */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    /* Team Extra Small */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Extra Small */
    .contact-info-wrapper {
        padding: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 1.2rem;
    }

    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-item-content h3 {
        font-size: 0.9rem;
    }

    .contact-item-content p,
    .contact-item-content a {
        font-size: 0.8rem;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .contact-form p {
        font-size: 0.85rem;
    }

    /* Footer Extra Small */
    .footer-about p {
        font-size: 0.9rem;
    }

    .footer-links ul li a,
    .footer-offices ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about .footer-logo h3 {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-offices h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-offices,
    .footer-contact {
        text-align: center;
    }

    .footer-links ul li a,
    .footer-offices ul li {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}

.team-header[data-scroll] {
    transform: translateY(50px);
}

.team-header[data-scroll].scroll-in {
    transform: translateY(0);
}

.team-card[data-scroll] {
    transform: scale(0.9);
}

.team-card[data-scroll].scroll-in {
    transform: scale(1);
}

.contact-header[data-scroll] {
    transform: translateY(50px);
}

.contact-header[data-scroll].scroll-in {
    transform: translateY(0);
}

.contact-info-wrapper[data-scroll] {
    transform: translateX(-50px);
}

.contact-info-wrapper[data-scroll].scroll-in {
    transform: translateX(0);
}

.contact-form-wrapper[data-scroll] {
    transform: translateX(50px);
}

.contact-form-wrapper[data-scroll].scroll-in {
    transform: translateX(0);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 2px solid #28a745;
}

.alert-success::before {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

.alert-error::before {
    content: '✕';
    font-size: 1.2rem;
    font-weight: bold;
}

/* Modern Popup Notification */
.popup-notification {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 10001;
    opacity: 0;
    transform: translateX(450px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.popup-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    padding: 2rem;
    min-width: 380px;
    max-width: 450px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    border-left: 6px solid;
}

.popup-notification.success .popup-content {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.popup-notification.error .popup-content {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.popup-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.popup-notification.success .popup-icon {
    color: #28a745;
    animation: successPulse 0.6s ease-out;
}

.popup-notification.error .popup-icon {
    color: #dc3545;
    animation: errorShake 0.6s ease-out;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.popup-message {
    flex: 1;
}

.popup-message h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
}

.popup-message p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.05);
    border: none;
    color: #999;
    font-size: 1.3rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.popup-close:hover {
    background: rgba(0,0,0,0.1);
    color: #333;
    transform: rotate(90deg);
}

#submitBtn {
    transition: all 0.3s ease;
}

#submitBtn:disabled {
    cursor: not-allowed;
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .popup-notification {
        top: 90px;
        right: 15px;
        left: 15px;
        transform: translateY(-150px);
    }
    
    .popup-notification.show {
        transform: translateY(0);
    }
    
    .popup-content {
        min-width: auto;
        width: 100%;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .popup-message h4 {
        font-size: 1.1rem;
    }
    
    .popup-message p {
        font-size: 0.9rem;
    }
}

/* Message Modal */
.message-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.message-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.message-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.message-icon.success {
    color: #28a745;
    animation: successBounce 0.6s ease;
}

.message-icon.error {
    color: #dc3545;
    animation: errorShake 0.6s ease;
}

@keyframes successBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.message-modal-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.message-modal-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.message-btn {
    background: linear-gradient(135deg, #dc143c, #ff1744);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

@media (max-width: 480px) {
    .message-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .message-icon {
        font-size: 4rem;
    }
    
    .message-modal-content h3 {
        font-size: 1.5rem;
    }
    
    .message-modal-content p {
        font-size: 1rem;
    }
    
    .message-btn {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
}

/* Country Badges in Modal */
.modal-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 23, 68, 0.05));
    color: #dc143c;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(220, 20, 60, 0.2);
    transition: all 0.3s;
}

.country-badge:hover {
    background: linear-gradient(135deg, #dc143c, #ff1744);
    color: #fff;
    border-color: #dc143c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.country-badge i {
    font-size: 0.85rem;
}
