:root {
    --primary: #228B22;
    --primary-dark: #1a6b1a;
    --primary-light: #90EE90;
    --secondary: #DC3545;
    --secondary-dark: #c82333;
    --secondary-light: #e4606d;
    --dark-bg: #1a1a1a;
    --light-bg: #FAFBFC;
    --card-bg: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --success: #10B981;
    --border-color: #E5E7EB;
    --shadow: 0 4px 20px rgba(34, 139, 34, 0.08);
    --shadow-hover: 0 12px 40px rgba(34, 139, 34, 0.15);
    --shadow-red: 0 4px 20px rgba(220, 53, 69, 0.15);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    line-height: 1.6;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    width: 60%;
}

.btn-primary {
    background: var(--primary);
    border: none !important;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.35);
}

.btn-secondary {
    background: var(--secondary);
    border: none !important;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff !important;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary) !important;
}

.hero-section {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-feature i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image .carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.hero-image .carousel-indicators button {
    background-color: var(--primary);
}

.hero-image .carousel-control-prev-icon,
.hero-image .carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 20px;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.sns-section {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.sns-section a {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s;
}

.sns-section a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-light);
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.feature-icon i {
    font-size: 1.9rem;
    color: #fff;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.feature-card .bn {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

.feature-card-link {
    text-decoration: none;
    display: block;
}

.feature-card-link .feature-card {
    cursor: pointer;
}

.software-ad-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.software-ad {
    position: relative;
    z-index: 1;
}

.ad-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-text {
    flex: 1;
    color: var(--text-dark);
}

.ad-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-dark);
}

.ad-text h2 span {
    color: var(--primary);
}

.ad-text p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ad-features {
    margin-bottom: 25px;
}

.ad-features span {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.ad-features span i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.ad-image {
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    max-height: 280px;
}

.ad-image img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-software {
    background: var(--secondary);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-software:hover {
    background: var(--secondary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.service-category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.service-category-header {
    padding: 25px;
    text-align: center;
    position: relative;
}

.service-category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-category-header h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.service-category-header p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
}

.service-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-list-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s;
}

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

.service-list-item:hover {
    background: #f8f9fa;
    padding-left: 25px;
}

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

.service-list-item .service-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.service-list-item .service-desc {
    font-size: 0.8rem;
    color: var(--text-dark);
    display: block;
    margin-top: 2px;
}

.stats-section {
    background: var(--primary);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.stat-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.ceo-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 20rem;
    color: rgba(34, 139, 34, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.ceo-image-wrapper {
    position: relative;
}

.ceo-image {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ceo-message {
    padding: 20px 0;
}

.ceo-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.ceo-message p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.ceo-message a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.ceo-message a:hover {
    text-decoration: underline;
}

.ceo-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--primary);
    display: inline-block;
}

.ceo-signature h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.ceo-signature p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon.orange {
    background: rgba(220, 53, 69, 0.1);
}

.info-icon.orange i { color: var(--secondary); }

.info-icon.blue {
    background: rgba(34, 139, 34, 0.1);
}

.info-icon.blue i { color: var(--primary); }

.info-icon.green {
    background: rgba(220, 53, 69, 0.1);
}

.info-icon.green i { color: var(--secondary); }

.info-icon i {
    font-size: 2rem;
}

.info-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.location-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    margin-bottom: 20px;
    position: relative;
}

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

.map-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    display: block;
    transition: transform 0.4s ease;
}

.location-card:hover .map-container iframe {
    transform: scale(1.02);
}

.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.6s;
    z-index: 2;
    pointer-events: none;
}

.location-card:hover::after {
    left: 100%;
}

.location-card-body {
    padding: 22px;
    position: relative;
    z-index: 3;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.location-card:hover .location-card-body {
    background: rgba(34, 139, 34, 0.03);
}

.location-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.location-card h5 i {
    color: var(--primary);
    margin-right: 10px;
}

.location-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.location-card p i {
    color: var(--primary);
    margin-right: 10px;
    width: 18px;
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.25);
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-item h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.1);
}

footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 70px 0 20px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--primary-light);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 2.2;
}

.footer-section a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: none;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 8px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary);
    color: #fff;
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-header {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 20px 25px;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-title {
    font-weight: 700;
    color: #fff;
}

.modal-body {
    background: #fff;
    color: #333;
    padding: 25px;
}

.feature-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-modal-list li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    color: #333;
}

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

.feature-modal-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-modal-list li strong {
    display: block;
    color: #212529;
    margin-bottom: 3px;
    font-weight: 600;
}

.feature-modal-list li span {
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 991px) {
    .ad-content {
        flex-direction: column;
        text-align: center;
    }
    .ad-text h2 {
        font-size: 1.6rem;
    }
    .ceo-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .service-category-card {
        margin-bottom: 20px;
    }
    .lang-dropdown-menu {
        right: auto;
        left: 0;
    }
}

.text-effect {
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.8), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-feature {
    position: relative;
    overflow: hidden;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.hero-feature:hover::before {
    left: 100%;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: 'Click for details';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--secondary);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-card:hover::after {
    bottom: 10px;
    opacity: 1;
}
