* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.nav-logo a:hover {
    opacity: 0.8;
}
.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.nav-logo h2 {
    color: #1e40af;
    font-weight: 700;
    font-size: 1.5rem;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #1e40af;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #1e40af;
    color: white;
}

.lang-btn.active {
    background: #1e40af;
    color: white;
}
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: #1e40af;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e40af;
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
.hero-new {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
}
@media (max-width: 768px) {
    .hero-new {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
}
@media (max-width: 480px) {
    .hero-new {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
}
.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}
.hero-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.hero-content-new {
    position: relative;
}
.hero-content-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}
.hero-content-new p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.stat-item-new {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fea606;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background: #fea606;
    color: #1e40af;
}
.btn-primary:hover {
    background: #e69505;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 166, 6, 0.3);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
}
.hero-image-new {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}
.water-drop-animation {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite;
}
.water-drop-animation i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}
.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(254, 166, 6, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(254, 166, 6, 0.3);
}
.tech-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}
.tech-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: float 4s ease-in-out infinite 1s;
}
.tech-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation: float 4s ease-in-out infinite 2s;
}
.tech-icon i {
    font-size: 1.5rem;
    color: #fea606;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.trust-indicators {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .trust-indicators {
        padding: 3rem 0;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .trust-item i {
        margin-bottom: 0.5rem;
    }
    .trust-item span {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .trust-indicators {
        padding: 2rem 0;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .trust-item {
        padding: 1.25rem;
    }
    .trust-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    .trust-item span {
        font-size: 0.8rem;
    }
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.trust-item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}
.trust-item i {
    font-size: 1.5rem;
    color: #1e40af;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ff;
    border-radius: 50%;
}
.trust-item span {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}
.about-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}
.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-actions {
        justify-content: center;
    }
    .visual-container {
        width: 300px;
        height: 300px;
    }
    .main-visual {
        width: 250px;
        height: 250px;
    }
    .main-visual i {
        font-size: 3rem;
    }
    .float-element {
        width: 50px;
        height: 50px;
    }
    .float-element i {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .about-preview-grid {
        gap: 2rem;
        padding: 0 15px;
        text-align: center;
    }
    .about-preview-visual {
        display: none;
    }
    .about-preview-content h2 {
        font-size: 2rem;
    }
    .about-preview-content p {
        font-size: 1rem;
    }
    .about-stat {
        padding: 1rem;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    .stat-icon i {
        font-size: 1rem;
    }
    .visual-container {
        width: 250px;
        height: 250px;
    }
    .main-visual {
        width: 200px;
        height: 200px;
    }
    .main-visual i {
        font-size: 2.5rem;
    }
}
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-preview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-preview-content h2 .highlight {
    color: #fea606;
}
.about-preview-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.about-stat {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.stat-icon i {
    color: white;
    font-size: 1.2rem;
}
.stat-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.stat-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.about-actions .btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.about-actions .btn-primary {
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    color: white;
    border: none;
}
.about-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 166, 6, 0.3);
}
.about-actions .btn-outline {
    background: transparent;
    color: #fea606;
    border: 2px solid #fea606;
}
.about-actions .btn-outline:hover {
    background: #fea606;
    color: white;
    transform: translateY(-2px);
}
.about-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}
.main-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
}
.main-visual i {
    font-size: 4rem;
    color: white;
}
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(254, 166, 6, 0.3);
    animation: float 3s ease-in-out infinite;
}
.float-element:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}
.float-element:nth-child(2) {
    bottom: 40px;
    left: 20px;
    animation-delay: 1s;
}
.float-element:nth-child(3) {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}
.float-element i {
    color: white;
    font-size: 1.2rem;
}
.image-placeholder-new {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}
.image-placeholder-new i {
    font-size: 6rem;
    color: white;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .image-placeholder-new {
        width: 250px;
        height: 250px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(30, 64, 175, 0.15);
    }
    .image-placeholder-new i {
        font-size: 4rem;
    }
}
@media (max-width: 480px) {
    .image-placeholder-new {
        width: 200px;
        height: 200px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(30, 64, 175, 0.1);
    }
    .image-placeholder-new i {
        font-size: 3rem;
    }
}
.services-preview-new {
    padding: 5rem 0;
    background: white;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.services-grid-new-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.service-card-new-home {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.service-card-new-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
}
.service-card-new-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.service-icon-new-home {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-icon-new-home i {
    font-size: 2rem;
    color: white;
}
.service-card-new-home h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.service-card-new-home p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.service-highlights li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}
.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fea606;
    font-weight: bold;
}
.service-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.service-link:hover {
    color: #3730a3;
    transform: translateX(5px);
}
.why-choose-us {
    padding: 5rem 0;
    background: #f8fafc;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.why-choose-icon i {
    font-size: 2rem;
    color: white;
}
.why-choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.why-choose-card p {
    color: #64748b;
    line-height: 1.6;
}
.testimonials {
    padding: 5rem 0;
    background: white;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e40af;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.testimonial-content {
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.testimonial-content p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-shrink: 0;
}
.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}
.author-info span {
    font-size: 0.9rem;
    color: #64748b;
}
.contact-cta-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
}
.cta-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.cta-content-new h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-content-new p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline-white:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
}
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
    color: #fea606;
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #fea606;
}
.footer-section p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section p a:hover {
    color: #fea606;
}
.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}
.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.footer-section i {
    margin-right: 0.5rem;
    color: #fea606;
}
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu .language-switcher {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
    .nav-menu.active {
        left: 0;
    }
    
    .language-switcher {
        margin-right: 1rem;
    }
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .main-services-content {
        padding-right: 0;
    }
    .main-services-content h2 {
        font-size: 2rem;
    }
    .services-features {
        margin-bottom: 2rem;
    }
    .service-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .feature-icon {
        margin: 0 auto 1rem;
    }
    .services-actions {
        justify-content: center;
    }
    .main-services-visual .visual-container {
        width: 300px;
        height: 300px;
    }
    .main-services-visual .main-visual {
        width: 250px;
        height: 250px;
    }
    .main-services-visual .main-visual i {
        font-size: 3rem;
    }
    .main-services-visual .float-element {
        width: 50px;
        height: 50px;
    }
    .main-services-visual .float-element i {
        font-size: 1rem;
    }
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .main-services-new .section-header h2 {
        font-size: 2rem;
    }
    .service-card-new {
        padding: 2rem;
    }
    .service-card-header {
        flex-direction: column;
        text-align: center;
    }
    .service-icon-new {
        margin: 0 auto 1rem;
    }
    .service-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .additional-services-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .process-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }
    .trust-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .trust-item span {
        font-size: 0.85rem;
        font-weight: 600;
    }
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about-preview-visual {
        display: none;
    }
    .services-grid-new-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        height: auto;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .testimonial-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .testimonial-author {
        margin-top: auto;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-content-new h1 {
        font-size: 2.2rem;
    }
    .hero-content-new p {
        font-size: 1.05rem;
    }
    .hero-visual {
        display: none;
    }
    .water-drop-animation {
        display: none;
    }
    .water-drop-animation i {
        display: none;
    }
    .tech-icon {
        display: none;
    }
    .tech-icon i {
        display: none;
    }
    .hero-container-new {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    .hero-content-new h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    .hero-content-new p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .stat-item-new {
        text-align: center;
    }
    .stat-number {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .logo-img {
        height: 50px;
        max-width: 150px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .about-grid,
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    .about-text p {
        font-size: 1rem;
        text-align: center;
    }
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    .image-placeholder i {
        font-size: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-item {
        padding: 1rem;
    }
    .stat-item h3 {
        font-size: 2rem;
    }
    .stat-item p {
        font-size: 0.9rem;
    }
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mv-card {
        padding: 1.5rem;
    }
    .mv-card h3 {
        font-size: 1.4rem;
    }
    .mv-card p {
        font-size: 0.95rem;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .value-card {
        padding: 1.5rem;
    }
    .value-card h3 {
        font-size: 1.2rem;
    }
    .value-card p {
        font-size: 0.9rem;
    }
    .mv-icon {
        width: 50px;
        height: 50px;
    }
    .mv-icon i {
        font-size: 1.2rem;
    }
    .value-icon {
        width: 60px;
        height: 60px;
    }
    .value-icon i {
        font-size: 1.5rem;
    }
    .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #1e40af;
}
    .about-content {
        padding: 3rem 0;
    }
    .mission-vision {
        padding: 3rem 0;
    }
    .values {
        padding: 3rem 0;
    }
    .page-header {
        padding: 3rem 0;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
    .page-header p {
        font-size: 1.1rem;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .additional-services-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-card-new {
        margin-bottom: 1rem;
    }
    .service-card-header {
        padding: 1.5rem;
    }
    .service-card-content {
        padding: 1.5rem;
    }
    .main-services-new .section-header h2 {
        font-size: 1.8rem;
    }
    .main-services-new .section-header p {
        font-size: 1rem;
    }
    .service-header-content h3 {
        font-size: 1.4rem;
    }
    .service-category {
        font-size: 0.7rem;
    }
    .process-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow-x: hidden;
    }
    .process-new {
        padding: 2rem 0;
        display: none;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        border-radius: 15px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border: 2px solid #e2e8f0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        margin-bottom: 1rem;
    }
    .trust-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        color: white;
    }
    .trust-item span {
        font-size: 1rem;
        font-weight: 700;
        color: #1e293b;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .testimonial-author {
        margin-top: 1rem;
    }
    .author-info h4 {
        font-size: 0.9rem;
    }
    .author-info span {
        font-size: 0.8rem;
    }
    .hero-content-new h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-content-new p {
        font-size: 1rem;
        line-height: 1.5;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .hero-visual {
        width: 250px;
        height: 250px;
    }
    .water-drop-animation {
        width: 120px;
        height: 120px;
    }
    .water-drop-animation i {
        font-size: 2.5rem;
    }
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    .tech-icon i {
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .logo-img {
        height: 45px;
        max-width: 120px;
    }
    .service-detail-card {
        padding: 2rem;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .map-placeholder {
        height: 200px;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
        margin-top: 70px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
    .about-content {
        padding: 2rem 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    .stat-item {
        padding: 0.8rem;
    }
    .stat-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    .stat-item p {
        font-size: 0.7rem;
    }
    .image-placeholder {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    .mission-vision {
        padding: 2rem 0;
    }
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .mv-card {
        text-align: center;
        padding: 1.5rem;
    }
    .mv-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .mv-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .values {
        padding: 2rem 0;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .value-card {
        padding: 1rem;
    }
    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .value-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}
@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 1rem;
        margin-top: 70px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .page-header p {
        font-size: 0.9rem;
    }
    .about-content {
        padding: 1.5rem 0;
    }
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .about-text p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .stat-item {
        padding: 0.6rem;
    }
    .stat-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    .stat-item p {
        font-size: 0.6rem;
    }
    .image-placeholder {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    .mission-vision {
        padding: 1.5rem 0;
    }
    .mv-card {
        padding: 0.8rem;
    }
    .mv-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    .mv-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    .values {
        padding: 1.5rem 0;
    }
    .value-card {
        padding: 0.8rem;
    }
    .value-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    .value-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}
.about-content {
    padding: 5rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2rem;
}
.about-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}
.stat-item p {
    color: #64748b;
    font-weight: 500;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.mission-vision {
    padding: 5rem 0;
    background: #f8fafc;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-5px);
}
.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.mv-icon i {
    font-size: 2rem;
    color: white;
}
.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1.5rem;
}
.mv-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}
.values {
    padding: 5rem 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.value-icon i {
    font-size: 1.8rem;
    color: white;
}
.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.value-card p {
    color: #64748b;
    line-height: 1.6;
}
.services-overview {
    padding: 3rem 0;
    background: #f8fafc;
}
@media (max-width: 768px) {
    .services-overview {
        padding: 2rem 0;
        margin-top: 1rem;
    }
}
@media (max-width: 480px) {
    .services-overview {
        padding: 1.5rem 0;
        margin-top: 1rem;
    }
}
.service-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.service-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
}
.service-hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}
.main-services {
    padding: 5rem 0;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.service-detail-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #1e40af;
}
.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.service-detail-icon i {
    font-size: 2rem;
    color: white;
}
.service-detail-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1.5rem;
}
.service-detail-card > p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.service-features,
.service-benefits {
    margin-bottom: 2rem;
}
.service-features h4,
.service-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.service-features ul,
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}
.service-features li,
.service-benefits li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}
.service-features li::before,
.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}
.additional-services {
    padding: 5rem 0;
    background: #f8fafc;
}
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.additional-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.additional-service-card:hover {
    transform: translateY(-5px);
}
.additional-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.additional-service-icon i {
    font-size: 1.8rem;
    color: white;
}
.additional-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.additional-service-card p {
    color: #64748b;
    line-height: 1.6;
}
.main-services-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}
.main-services-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.main-services-new .container {
    position: relative;
    z-index: 1;
}
.main-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.main-services-content {
    padding-right: 2rem;
}
.main-services-content .section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.main-services-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.main-services-content h2 .highlight {
    color: #fea606;
}
.main-services-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.services-features {
    margin-bottom: 2.5rem;
}
.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.feature-icon i {
    color: white;
    font-size: 1.2rem;
}
.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}
.services-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.services-actions .btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.services-actions .btn-primary {
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    color: white;
    border: none;
}
.services-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 166, 6, 0.3);
}
.services-actions .btn-outline {
    background: transparent;
    color: #fea606;
    border: 2px solid #fea606;
}
.services-actions .btn-outline:hover {
    background: #fea606;
    color: white;
    transform: translateY(-2px);
}
.main-services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.main-services-visual .visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}
.main-services-visual .main-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
}
.main-services-visual .main-visual i {
    font-size: 4rem;
    color: white;
}
.main-services-visual .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.main-services-visual .float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(254, 166, 6, 0.3);
    animation: float 3s ease-in-out infinite;
}
.main-services-visual .float-element:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}
.main-services-visual .float-element:nth-child(2) {
    bottom: 40px;
    left: 20px;
    animation-delay: 1s;
}
.main-services-visual .float-element:nth-child(3) {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}
.main-services-visual .float-element i {
    color: white;
    font-size: 1.2rem;
}
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.service-card-new {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
}
.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.service-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.service-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(254, 166, 6, 0.3);
}
.service-icon-new i {
    color: white;
    font-size: 1.8rem;
}
.service-header-content {
    flex: 1;
}
.service-header-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}
.service-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-card-content {
    padding: 0;
}
.service-card-content > p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.service-highlights {
    margin-bottom: 2rem;
}
.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.highlight-item i {
    color: #fea606;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.highlight-item span {
    color: #64748b;
    font-size: 0.95rem;
}
.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fea606;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 166, 6, 0.3);
}
.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 166, 6, 0.4);
    color: white;
}
.service-cta i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}
.service-features-new,
.service-benefits-new {
    margin-bottom: 2rem;
}
.service-features-new h4,
.service-benefits-new h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.service-features-new h4::before {
    content: '✓';
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
}
.service-benefits-new h4::before {
    content: '★';
    background: #f59e0b;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
}
.service-features-new ul,
.service-benefits-new ul {
    list-style: none;
    padding-left: 0;
}
.service-features-new li,
.service-benefits-new li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}
.service-features-new li::before,
.service-benefits-new li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}
.service-benefits-new li::before {
    color: #f59e0b;
}
.additional-services-new {
    padding: 5rem 0;
}
.additional-services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.additional-service-card-new {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}
.additional-service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #1e40af;
}
.additional-service-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.additional-service-icon-new i {
    font-size: 1.8rem;
    color: white;
}
.additional-service-card-new h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.additional-service-card-new p {
    color: #64748b;
    line-height: 1.6;
}
.process-new {
    padding: 3rem 0;
    background: #f8fafc;
}
.process-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
    .process-step-new {
        text-align: center;
        padding: 1rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        position: relative;
        margin-bottom: 0.5rem;
    }
.process-step-new:hover {
    transform: translateY(-5px);
}
    .process-number-new {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.8rem;
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
    }
    .process-step-new h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #1e40af;
        margin-bottom: 0.6rem;
    }
.process-step-new p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}
.process {
    padding: 5rem 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}
.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}
.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.process-step p {
    color: #64748b;
    line-height: 1.6;
}
.service-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    padding: 5rem 0;
    color: white;
}
.contact-info {
    padding: 4rem 0;
    background: #f8fafc;
}
.map-section-full {
    padding: 5rem 0;
}
.map-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.map-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.contact-icon i {
    font-size: 1.8rem;
    color: white;
}
.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.contact-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
}
.contact-form-map {
    padding: 5rem 0;
}
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}
.contact-form-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
}
.map-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2rem;
}
.map-container {
    margin-bottom: 2rem;
}
.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.map-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}
.map-info p {
    color: #64748b;
    margin-bottom: 1rem;
}
.map-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.map-info li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}
.map-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
}
.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #f8fafc;
}
.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}
.faq-question i {
    color: #1e40af;
    transition: transform 0.3s ease;
}
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    display: none;
}
.faq-answer.active {
    display: block;
}
html {
    scroll-behavior: smooth;
} 
.service-detail-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}
.service-detail-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}
.service-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.service-detail-content {
    padding-right: 2rem;
}
.service-detail-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(254, 166, 6, 0.3);
}
.service-detail-icon i {
    font-size: 2rem;
    color: white;
}
.service-detail-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.service-detail-title p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}
.service-detail-description {
    margin-bottom: 2.5rem;
}
.service-detail-description p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}
.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.features-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fea606;
}
.features-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features-column li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #475569;
}
.features-column li i {
    color: #fea606;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}
.service-detail-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.service-detail-cta .btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-detail-cta .btn-primary {
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    color: white;
    border: none;
}
.service-detail-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 166, 6, 0.3);
}
.service-detail-cta .btn-outline {
    background: transparent;
    color: #fea606;
    border: 2px solid #fea606;
}
.service-detail-cta .btn-outline:hover {
    background: #fea606;
    color: white;
    transform: translateY(-2px);
}
.service-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.service-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}
.service-main-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 2;
}
.service-main-visual i {
    font-size: 4rem;
    color: white;
}
.service-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.service-float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(254, 166, 6, 0.3);
    animation: float 3s ease-in-out infinite;
}
.service-float-element:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}
.service-float-element:nth-child(2) {
    bottom: 40px;
    left: 20px;
    animation-delay: 1s;
}
.service-float-element:nth-child(3) {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}
.service-float-element i {
    color: white;
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .service-detail-content {
        padding-right: 0;
    }
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    .service-detail-icon {
        margin: 0 auto 1.5rem;
    }
    .service-detail-title h2 {
        font-size: 2rem;
    }
    .service-detail-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-detail-cta {
        justify-content: center;
    }
    .service-visual-container {
        width: 300px;
        height: 300px;
    }
    .service-main-visual {
        width: 250px;
        height: 250px;
    }
    .service-main-visual i {
        font-size: 3rem;
    }
    .service-float-element {
        width: 50px;
        height: 50px;
    }
    .service-float-element i {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .service-detail-section {
        padding: 3rem 0;
    }
    .service-detail-title h2 {
        font-size: 1.8rem;
    }
    .service-detail-title p {
        font-size: 1rem;
    }
    .service-detail-description p {
        font-size: 1rem;
    }
    .features-column h4 {
        font-size: 1.1rem;
    }
    .features-column li {
        font-size: 0.9rem;
    }
    .service-detail-cta {
        flex-direction: column;
        align-items: center;
    }
    .service-visual-container {
        width: 250px;
        height: 250px;
    }
    .service-main-visual {
        width: 200px;
        height: 200px;
    }
    .service-main-visual i {
        font-size: 2.5rem;
    }
    .service-float-element {
        width: 40px;
        height: 40px;
    }
    .service-float-element i {
        font-size: 0.9rem;
    }
}
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.home-service-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.home-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
}
.home-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.home-service-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.home-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fea606 0%, #e69505 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(254, 166, 6, 0.3);
}
.home-service-icon i {
    font-size: 1.5rem;
    color: white;
}
.home-service-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.home-service-title p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
.home-service-features {
    margin-bottom: 1.5rem;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}
.feature-item i {
    color: #fea606;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    width: 12px;
    text-align: center;
}
.home-service-link {
    display: inline-flex;
    align-items: center;
    color: #fea606;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.home-service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.home-service-link:hover {
    color: #e69505;
}
.home-service-link:hover i {
    transform: translateX(3px);
}
@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .home-service-item {
        padding: 1.5rem;
    }
    .home-service-header {
        flex-direction: column;
        text-align: center;
    }
    .home-service-icon {
        margin: 0 auto 1rem;
    }
    .home-service-title h3 {
        font-size: 1.2rem;
    }
    .home-service-title p {
        font-size: 0.85rem;
    }
    .feature-item {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .home-service-item {
        padding: 1.25rem;
    }
    .home-service-icon {
        width: 50px;
        height: 50px;
    }
    .home-service-icon i {
        font-size: 1.2rem;
    }
    .home-service-title h3 {
        font-size: 1.1rem;
    }
    .home-service-title p {
        font-size: 0.8rem;
    }
    .feature-item {
        font-size: 0.8rem;
    }
    .home-service-link {
        font-size: 0.85rem;
    }
}

/* Header Language Switcher */
.header-lang-switcher {
    position: relative;
    margin-right: 1rem;
}

.header-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #1e40af;
    border-radius: 25px;
    color: #1e40af;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-lang-btn:hover {
    background: #1e40af;
    color: white;
}

.header-lang-btn i {
    font-size: 1rem;
}

.header-lang-btn .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.header-lang-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.current-lang {
    font-weight: 700;
}

.header-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.header-lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.lang-option:hover {
    background-color: #f8fafc;
}

.lang-option.active {
    background-color: #eff6ff;
    color: #1e40af;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .header-lang-switcher {
        margin-right: 0.5rem;
    }
    
    .header-lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .header-lang-dropdown {
        min-width: 130px;
    }
    
    .header-lang-switcher {
        margin-right: 0.5rem;
    }
    
    .nav-menu .header-lang-switcher {
        display: block;
        margin: 1rem 0;
        text-align: center;
    }
    
    .nav-menu .header-lang-btn {
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Hide mobile language switcher on desktop */
@media (min-width: 769px) {
    .nav-menu .header-lang-switcher {
        display: none;
    }
}
