/* General */
body {
    font-family: 'Roboto', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 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;
}

/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/subtle-dots.png');
    opacity: 0.1;
    z-index: 1;
}
.pricing-hero .container {
    position: relative;
    z-index: 2;
}
.pricing-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.pricing-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.pricing-hero .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Pricing List Section */
.pricing-list {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}
.pricing-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/subtle-dots.png');
    opacity: 0.05;
    z-index: 1;
}
.pricing-list .container {
    position: relative;
    z-index: 2;
}
.pricing-list h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #1a202c;
}
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transition: transform 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.pricing-card:hover::before {
    transform: scaleX(1.2);
}
.pricing-card i {
    color: #007bff;
    transition: transform 0.3s ease;
}
.pricing-card:hover i {
    transform: scale(1.1);
}
.pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1a202c;
}
.pricing-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}
.pricing-card .price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #007bff;
}
.pricing-card .price-value {
    font-size: 1.75rem;
}
.pricing-card .price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #2d3748;
}
.pricing-card ul {
    font-size: 0.95rem;
    color: #4a5568;
    text-align: left;
}
.pricing-card ul li {
    margin-bottom: 0.5rem;
}
.pricing-card .btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.pricing-card .btn:hover {
    background-color: #007bff;
    color: #ffffff;
}
.pricing-card.highlighted {
    border: 2px solid #007bff;
}
.pricing-card.highlighted::before {
    background: linear-gradient(90deg, #0056b3, #007bff);
}
.pricing-card .badge {
    background: #ff6b6b;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
}
.filter-buttons .btn {
    margin: 0 5px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.filter-buttons .btn.active,
.filter-buttons .btn:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* 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;
}

/* Modal */
.modal-content {
    border-radius: 10px;
}
.modal-header {
    border-bottom: none;
}
.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.modal-body p {
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pricing-hero {
        padding: 4rem 0;
    }
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    .pricing-hero p {
        font-size: 1.1rem;
    }
    .pricing-list h2 {
        font-size: 2rem;
    }
    .pricing-card h3 {
        font-size: 1.25rem;
    }
    .pricing-card .price {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pricing-hero {
        padding: 3rem 0;
    }
    .pricing-hero h1 {
        font-size: 2rem;
    }
    .pricing-hero p {
        font-size: 1rem;
    }
    .pricing-hero .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    .filter-buttons .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}