/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #2d3748;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.navbar-brand img {
    max-height: 60px;
}
.navbar-toggler {
    border: none;
}
.phone {
    color: #007bff;
    font-weight: 600;
}
.call-order-btn {
    font-size: 14px;
    padding: 8px 16px;
}
.offcanvas {
    max-width: 300px;
}
.offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.nav-link {
    font-size: 18px;
    color: #333 !important;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #007bff !important;
}
.language-switcher .btn {
    font-size: 14px;
    padding: 5px 10px;
}
.lang-btn.active {
    background-color: #007bff;
    color: white;
}
.social-icon {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: #007bff;
}

/* Existing styles */
.country-select {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-select select {
    max-width: 100px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
}

.form-label {
    font-weight: 600;
    color: #333;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Styles for form message */
.alert {
    padding: 10px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1a202c;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
}

.hero img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero img:hover {
    transform: scale(1.03);
}

/* Benefits section */
.benefits {
    background-color: #f8f9fa;
}

.benefits h2 {
    font-size: 2.5rem;
}

.benefit-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #007BFF;
}

.benefit-item h3 {
    font-size: 1.5rem;
}

.benefit-item p {
    font-size: 1rem;
    color: #4a5568;
}

/* Diagram section */
.diagram h2 {
    font-size: 2.5rem;
}

.infra-diagram {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.diagram-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.diagram-item:hover {
    transform: scale(1.1);
}

.tooltip-bg {
    opacity: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tooltip-text {
    opacity: 0;
    text-anchor: middle;
}

/* Process section */
.process {
    background-color: #f8f9fa;
}

.process h2 {
    font-size: 2.5rem;
}

.process-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.process-item i {
    color: #007BFF;
}

.process-item h4 {
    font-size: 1.25rem;
}

.process-item p {
    font-size: 0.95rem;
    color: #4a5568;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.progress-bar {
    background-color: #007BFF;
    border-radius: 4px;
}

/* Cases section */
.cases h2 {
    font-size: 2.5rem;
}

.case-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.case-item img {
    max-width: 100%;
    border-radius: 8px;
}

.case-item h3 {
    font-size: 1.5rem;
}

.case-item p {
    font-size: 1rem;
    color: #4a5568;
}

/* Footer */
/* Footer */
.footer {
    background-color: #f1f1f1;
}
.footer-logo img {
    max-width: 200px;
}
.footer h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #007bff;
}
.footer .phone, .footer .email {
    color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .benefits h2, .diagram h2, .process h2, .cases h2 {
        font-size: 2rem;
    }

    .infra-diagram {
        transform: scale(0.8);
    }
}

@media (max-width: 767px) {
    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 1.5rem;
    }

    .benefit-item, .process-item {
        margin-bottom: 1.5rem;
    }

    .infra-diagram {
        transform: scale(0.6);
    }
}