* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 80px;
}

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
}

/* Navbar Brand Section */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 63px;
    width: auto;
    max-width: 180px;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.brand-text h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.brand-text span {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    display: block;
    margin-top: -5px;
}

/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 60%;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.2);
    border-radius: 25px;
    padding: 8px 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.language-btn:hover {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.language-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-btn i {
    font-size: 0.8rem;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-btn i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Language Menu - Fixed missing styles */
.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 8px;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #2c3e50;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 8px;
    margin: 4px;
}

.language-option:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.language-option:first-child {
    margin-top: 8px;
}

.language-option:last-child {
    margin-bottom: 8px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(52, 152, 219, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
    transform: rotate(45deg) translate(6px, 6px);
    background: #3498db;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
    transform: rotate(-45deg) translate(6px, -6px);
    background: #3498db;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-quote {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-quote p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background: #2980b9;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}

.cta-button-secondary:hover::before {
    left: 100%;
}

.cta-button-secondary:hover {
    background: white;
    color: #2c3e50;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.mission p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
    color: #374151;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    -webkit-animation-delay: calc(var(--i) * 0.1s);
    animation-delay: calc(var(--i) * 0.1s);
}

.service-features li:nth-child(1):before { --i: 1; }
.service-features li:nth-child(2):before { --i: 2; }
.service-features li:nth-child(3):before { --i: 3; }
.service-features li:nth-child(4):before { --i: 4; }

.service-features li:last-child {
    border-bottom: none;
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.legal-content .last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.legal-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    line-height: 1.7;
    margin-bottom: 8px;
    color: #2c3e50;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #3498db;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #e8e8e8;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.company-info {
    margin-bottom: 2rem;
}

.company-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.company-info p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

.footer-section h3 i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-item,
.address-item,
.business-hours {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.3rem 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-item:hover,
.address-item:hover,
.business-hours:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    color: #3498db;
}

.contact-item i,
.address-item i,
.business-hours i {
    color: #ffffff;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    margin-top: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-item:hover i,
.address-item:hover i,
.business-hours:hover i {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #2ecc71;
}

.contact-item span,
.contact-item a {
    color: #b8b8b8;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.address-item div p,
.business-hours div p {
    margin-bottom: 0.3rem;
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 0.9rem;
}

.business-hours {
    margin-top: 0;
    padding: 0;
    border-top: none;
}

.business-hours div p {
    margin: 0 0 0.8rem 0;
    line-height: 1.6;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.business-hours div p:last-child {
    margin-bottom: 0;
}

.business-hours div p strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.3rem 0;
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-services li i {
    color: #ffffff;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.5), transparent);
    margin: 2rem 0;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p {
    margin: 0;
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Additional Professional Styling */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    margin: 4rem 0;
}

.stats-section {
    background: #2c3e50;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: default;
}

.stat-item h3:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.stat-item:hover p {
    opacity: 1;
}

/* Scroll Animation Effects */
.scroll-highlight {
    position: relative;
    overflow: hidden;
}

.scroll-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    -webkit-animation: scrollHighlight 0.8s ease-out;
    animation: scrollHighlight 0.8s ease-out;
    z-index: 1;
    pointer-events: none;
}

@-webkit-keyframes scrollHighlight {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes scrollHighlight {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    z-index: 9999;
    -webkit-transition: width 0.1s ease;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Enhanced animations */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slideInFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@-webkit-keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@-webkit-keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@-webkit-keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-webkit-keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(52, 152, 219, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(52, 152, 219, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
    }
}

@-webkit-keyframes rotateIn {
    from {
        opacity: 0;
        -webkit-transform: rotate(-180deg) scale(0.5);
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        -webkit-transform: rotate(-180deg) scale(0.5);
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
}

.feature-card {
    -webkit-animation: fadeInUp 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.service-card {
    -webkit-animation: fadeInUp 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.service-card:nth-child(2) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.stat-item {
    -webkit-animation: fadeInUp 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.hero h1 {
    -webkit-animation: slideInFromTop 1s ease-out;
    animation: slideInFromTop 1s ease-out;
}

.hero-subtitle {
    -webkit-animation: fadeInUp 1s ease-out 0.3s both;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-quote {
    -webkit-animation: fadeInUp 1s ease-out 0.6s both;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    -webkit-animation: fadeInUp 1s ease-out 0.9s both;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.about h2,
.mission h2,
.features h2,
.services h2 {
    -webkit-animation: fadeInUp 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.about-content {
    -webkit-animation: fadeInUp 0.8s ease-out 0.3s both;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.mission p {
    -webkit-animation: fadeInUp 0.8s ease-out 0.3s both;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Responsive Design - Combined and Fixed Media Queries */

/* Tablet Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
        padding: 0 1rem;
    }
        
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
        
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .navbar-right {
        gap: 20px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .brand-text h2 {
        font-size: 1.6rem;
    }
}

/* Mobile Landscape and Small Tablet */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .language-selector {
        order: 2;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .brand-text {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar-right {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: calc(100vh - 80px);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        padding: 40px 0;
        gap: 0;
        justify-content: flex-start;
        z-index: 999;
    }
    
    .navbar-right.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 20px;
        display: block;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .language-selector {
        position: relative;
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .language-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-10px);
        transform: translateX(-50%) translateY(-10px);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 8px;
        background: #fff;
        border-radius: 12px;
        min-width: 180px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .language-dropdown.active .language-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .hero-quote p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button,
    .cta-button-secondary {
        width: 200px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: left;
         padding: 0 1rem;
     }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .about h2,
    .mission h2,
    .features h2,
    .services h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .legal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 49px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        min-width: auto;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .hero-quote {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .hero-quote p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .about h2,
    .mission h2,
    .features h2,
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-content p,
    .mission p {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-button,
    .cta-button-secondary {
        width: 180px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-quote {
        padding: 0.8rem;
    }
    
    .hero-quote p {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .contact-item,
    .address-item,
    .business-hours {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-services li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .footer-bottom-left p {
        font-size: 0.8rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .service-content,
    .feature-card {
        padding: 1rem;
    }
}