/* 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, #f8f9fa 0%, #e9ecef 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 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero img:hover {
    transform: scale(1.05);
}

/* Benefits section */
.benefits {
    background-color: #f8f9fa;
}

.benefits h2 {
    font-size: 2.5rem;
}

.benefits .card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefits .card i {
    color: #007BFF;
}

.benefits .card-title {
    font-size: 1.5rem;
}

.benefits .card-text {
    font-size: 1rem;
    color: #4a5568;
}

/* Process section */
.process h2 {
    font-size: 2.5rem;
}

.process-step {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007BFF;
    color: #fff;
    border-radius: 50%;
}

.process-step h4 {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #4a5568;
}

/* Cases section */
.cases h2 {
    font-size: 2.5rem;
}

.cases img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cases img:hover {
    transform: scale(1.05);
}

.cases h3 {
    font-size: 1.5rem;
}

.cases p {
    font-size: 1rem;
    color: #4a5568;
}


/* 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, .process h2, .cases h2 {
        font-size: 2rem;
    }

    .cases img {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 1.5rem;
    }

    .process-step {
        margin-bottom: 1.5rem;
    }
}